DATA cl_gui_splitter_container_obj TYPE REF TO cl_gui_splitter_container. " cl_gui_container objects for splitter DATA cl_gui_container_1 TYPE REF TO cl_gui_container. DATA cl_gui_container_2 TYPE REF TO cl_gui_container. DATA cl_gui_container_3 TYPE REF TO cl_gui_container. ...
SAP Managed Tags: ABAP Development Hi, I want to reuse the same custom container screen for a different data. First screen there will be button 1 and button 2 if I click button 1 then calculate and display data in custom container, if button 2 is clicked then calculate and display da...
SAP Managed Tags: ABAP Development Hi all, I want to separate a CL_GUI_DOCKING_CONTAINER in four parts. - - | | |--- - I had done this: CREATE OBJECT g_container_left EXPORTING side = cl_gui_docking_container=>dock_at_left extension = 300 repid = g_repid dynnr = '1001' life...
SAP Managed Tags: ABAP Development Hello Stephan The required method calls are: - Separation line invisible (guess in this case it is also unmovable) CALL METHOD splitter->set_column_sash EXPORTING id = 1 type = cl_gui_splitter_container=>TYPE_SASHVISIBLE value = cl_gui_splitter_container...
SAP Managed Tags: ABAP Development Hi, I am using CL_GUI_DOCKING_CONTAINER for grid display in the same selection screen. I am getting the output. But i am not able to reduce the width of the grid. It is taking the entire screen space below. I have tried changing ratio and extensi...
SAP Managed Tags: ABAP Development Methods used in cl_gui_custom_container for ALV and for what purpose and i want the exact senario for the usage of those method? 2. What events are used in ALV? I anyone help me please, Points will be awarded. Thank you & Regards, Jagrut BharatKu...
SAP Managed Tags: ABAP Development Hi, use SET_COLUMN_WIDTH method to set the width., also check this doc : [Handler in Splitter Container|http://www.scribd.com/doc/6546287/ABAP-Objects-in-Action] hope this may help u., Thanks & Regards, Kiran Reply dennis_janezic2 Explorer In res...