SAP Managed Tags: ABAP Development well the necessary method is protected so i think you can create your own class and inherit cl_gui_container then write your own code there. but create a screen and container is much more easier. Reply deepak_h3 Participant In response to DoanManhQuyn...
SAP Managed Tags: ABAP Development My Friend, Whenever you use dummy screen cl_gui_container=>screen0 it creates a dummy container in it. So placing your container will not work here, as this place is already occupied by the dummy container. If you look in this class definition you wil...
1、拆分CL_GUI_CONTAINER可以通过使用CL_GUI_SPLITTER_CONTAINER对象的GET_CONTAINER方法获取多个容器对象来实现。 DATA: G_SPLITTER_CONTAINER_1 TYPE REF TO CL_GUI_SPLITTER_CONTAINER. DATA: MYCONTAINER_1 TYPE REF TO CL_GUI_CONTAINER. DATA: MYCONTAINER_2 TYPE REF TO CL_GUI_CONTAINER. CREATE OBJECT G...
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 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 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 BharatKum...