SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

ALV и 2 экрана.



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
flex
Специалист
Специалист



Joined: 02 Feb 2011
Posts: 50

PostPosted: Mon Apr 16, 2012 4:47 pm    Post subject: ALV и 2 экрана. Reply with quote

Всем привет!
Коллеги, не подскажете, каким образом лучше реализовать alv на двух экранах.

Раньше делал так:
формировал филдкаталог, табличку и пользовался:
Code:
 CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

Дальше, при нажатии кнопки чистил филдакалог, заполнял нужную мне табличку, опять вызывал REUSE_ALV_GRID_DISPLAY.

Появилась задача на 2м экране сделать 2 окна.
Решил сделать через сплит контейнера на 2 грида и вызовом set_table_for_first_display для каждого гриба (подсмотрел в RSDEMO_SPLITTER_CONTROL).

Но, как я понял при таком случае не создается новый экран и я впал в ступор...

Каким образом лучше реализовать 2 экрана и чтобы на 2м было разбиение ещё на 2?
Back to top
View user's profile Send private message
Удав
Гуру
Гуру


Age: 48
Joined: 25 Jan 2008
Posts: 580
Location: Москва

PostPosted: Wed Apr 18, 2012 12:46 pm    Post subject: Reply with quote

Внутрь 2-й области сплиттера присвойте еще один сплиттер.
_________________
С уважением,
Удав.
Back to top
View user's profile Send private message
dev403k
Участник
Участник



Joined: 15 Jun 2010
Posts: 13

PostPosted: Thu Apr 19, 2012 12:39 pm    Post subject: Reply with quote

Добрый день.
Реализуйте это все вкладками. На 1-й один ALV, на 2-й два ALV.
Два ALV выводите через контейнер.

Code:
DATA: ob_custom TYPE REF TO cl_gui_custom_container ,
      ob_1 TYPE REF TO cl_gui_easy_splitter_container ,
      ob_2 TYPE REF TO cl_gui_easy_splitter_container ,
      ob_g1  TYPE REF TO cl_gui_alv_grid ,
      ob_g2 TYPE REF TO cl_gui_alv_grid .
DATA: lt_exclude TYPE ui_functions,
      gs_layout TYPE lvc_s_layo,
      pt_fieldcat TYPE lvc_t_fcat,
      gt_fieldcat TYPE lvc_t_fcat.
***
  CREATE OBJECT ob_1
    EXPORTING
      parent        = ob_custom
      orientation   = cl_gui_easy_splitter_container=>orientation_horizontal" orientation_vertical
      sash_position = 50.

  CREATE OBJECT ob_2
    EXPORTING
      parent        = ob_1->bottom_right_container
      orientation   = cl_gui_easy_splitter_container=>orientation_horizontal "orientation_vertical
      SASH_POSITION = 80.

  CREATE OBJECT ob_g1
    EXPORTING
      i_parent = ob_1->top_left_container.

  CREATE OBJECT ob_g2
    EXPORTING
      i_parent = ob_2->top_left_container. "BOTTOM_RIGHT_CONTAINER.
**
 CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
      i_structure_name = 'ZPL_STR_INTERV'
    CHANGING
      ct_fieldcat      = pt_fieldcat[].

  gs_layout-grid_title = '1-й ALV'.

  CALL METHOD ob_g1->set_table_for_first_display
    EXPORTING
      i_structure_name = 'SPFLI'
      is_layout        = gs_layout
    " it_toolbar_excluding = lt_exclude
    CHANGING
      "it_fieldcatalog  = pt_fieldcat[] "gt_fieldcat
      it_outtab        = spfli0[].

  gs_layout-grid_title = '2-й ALV'.

  CALL METHOD ob_g2->set_table_for_first_display
    EXPORTING
      i_structure_name = 'SPFLI'
      is_layout        = gs_layout
    " it_toolbar_excluding = lt_exclude
    CHANGING
      "it_fieldcatalog  = pt_fieldcat[] "gt_fieldcat
      it_outtab        = spfli0[].
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG.
SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG.
Every effort is made to ensure content integrity. Use information on this site at your own risk.