Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

problem for alv in background using dock containers

former_member203501
Active Contributor
0 Likes
774

hi all,

i have a problem in using the dock containers for the alv in background .....that is i can able to display two dock containers in foreground and i am getting only one in the background.....i didnt get what is the probelm...

the code is like this in the background ....

 

IF cl_gui_alv_grid=>offline( ) IS not INITIAL.
IF gr_logs IS INITIAL .
  DATA:alv_container1 TYPE REF TO cl_gui_docking_container.
      CHECK alv_container1 IS INITIAL.
      CREATE OBJECT gr_logs
               EXPORTING
               i_parent          =  alv_container1.
endif.

    IF gr_details IS INITIAL .
    DATA: alv_container  TYPE REF TO cl_gui_docking_container.
      CHECK alv_container IS INITIAL.

      CREATE OBJECT gr_details
               EXPORTING
               i_parent          =  alv_container.
endif.

can anybody please help me ....

hi all,

i have a problem in using the dock containers for the alv in background .....that is i can able to display two dock containers in foreground and i am getting only one in the background.....i didnt get what is the probelm...

the code is like this in the background ....

 

IF cl_gui_alv_grid=>offline( ) IS not INITIAL.
IF gr_logs IS INITIAL .
  DATA:alv_container1 TYPE REF TO cl_gui_docking_container.
      CHECK alv_container1 IS INITIAL.
      CREATE OBJECT gr_logs
               EXPORTING
               i_parent          =  alv_container1.
endif.

    IF gr_details IS INITIAL .
    DATA: alv_container  TYPE REF TO cl_gui_docking_container.
      CHECK alv_container IS INITIAL.

      CREATE OBJECT gr_details
               EXPORTING
               i_parent          =  alv_container.
endif.

can anybody please help me ....

3 REPLIES 3
Read only

former_member203501
Active Contributor
0 Likes
641

any answers please....

Regards,

Venkat Appikonda.

Read only

0 Likes
641

Hi Venkat,

'm facing the same problem. Do you have any resolution for this?

Please share the same.

Regards,

Viji

Read only

former_member203501
Active Contributor
0 Likes
641

as per my understanding , its not possible for us to have two containers in back ground. I have created a blocked instead of two containers.