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

Place a Tabstrips Inside Docking Container

former_member194669
Active Contributor
0 Likes
607

All,

I have a docking container like the following


-------------------------------------------


-------------------------------------------









-------------------------------------------

i need to place a tabstrip in the bottom container. I have the following code


 if gc_docking_t is initial.
    create object gc_docking_t
       exporting
         repid     = sy-repid
         dynnr     = '0300'
         extension = 75
         style     = style
         side      = cl_gui_docking_container=>dock_at_top
         metric    = cl_gui_docking_container=>metric_pixel.

  endif.
  if gc_docking_l is initial.
    create object gc_docking_l
      exporting repid = sy-repid
      dynnr = '0300'
      extension = 9999
      side = cl_gui_docking_container=>dock_at_bottom.
  endif.

I have created a screen 310 with tabstrips inside, how can i call this screen inside this docking container

Any Info ?

All,

I have a docking container like the following


-------------------------------------------


-------------------------------------------









-------------------------------------------

i need to place a tabstrip in the bottom container. I have the following code


 if gc_docking_t is initial.
    create object gc_docking_t
       exporting
         repid     = sy-repid
         dynnr     = '0300'
         extension = 75
         style     = style
         side      = cl_gui_docking_container=>dock_at_top
         metric    = cl_gui_docking_container=>metric_pixel.

  endif.
  if gc_docking_l is initial.
    create object gc_docking_l
      exporting repid = sy-repid
      dynnr = '0300'
      extension = 9999
      side = cl_gui_docking_container=>dock_at_bottom.
  endif.

I have created a screen 310 with tabstrips inside, how can i call this screen inside this docking container

Any Info ?

2 REPLIES 2
Read only

Former Member
0 Likes
450

Hi,

SCN -Wiki->My Home->Code Gallery->Community Code Gallery->TabStrip in ALV(OOPS)

Please refer http://wiki.sdn.sap.com/wiki/display/Snippets/TabStripinALV(OOPS)

Read only

former_member194669
Active Contributor
0 Likes
450

Resolved. Using Splitter Container instead of docking container

Thanks