<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic abt docking container? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abt-docking-container/m-p/2500553#M564988</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to createdocking container we must create the ref object for custom container or not&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jul 2007 14:13:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-17T14:13:17Z</dc:date>
    <item>
      <title>abt docking container?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abt-docking-container/m-p/2500553#M564988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to createdocking container we must create the ref object for custom container or not&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:13:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abt-docking-container/m-p/2500553#M564988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T14:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: abt docking container?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abt-docking-container/m-p/2500554#M564989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, there is no need for the custom container object, just the docking.  See this example where I'm attaching the docking to the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


report  zrich_0005.

data: imara type table of mara with header line.
data: it001w type table of t001w with header line.

parameters: p_check type c,
            p_rad1 radiobutton group grp1 default 'X',
            p_rad2 radiobutton group grp1,
            p_rad3 radiobutton group grp1.

start-of-selection.

at selection-screen output.

  data: dockingbottom type ref to cl_gui_docking_container,
        dockingright  type ref to cl_gui_docking_container,
        alv_bottom    type ref to cl_gui_alv_grid,
        alv_right     type ref to cl_gui_alv_grid,
        repid type syrepid.

  repid = sy-repid.

  select * into corresponding fields of table imara
              from mara up to 100 rows.
             

  select * into corresponding fields of table it001w
              from t001w.


  check dockingbottom is initial.

  create object dockingbottom
              exporting repid     = repid
                        dynnr     = sy-dynnr
                        side      = dockingbottom-&amp;gt;dock_at_bottom
                        extension = 170.

  create object alv_bottom
                exporting i_parent = dockingbottom.


  call method alv_bottom-&amp;gt;set_table_for_first_display
      exporting
           i_structure_name       = 'MARA'
      changing
           it_outtab       = imara[].

  create object dockingright
              exporting repid     = repid
                        dynnr     = sy-dynnr
                        side      = dockingright-&amp;gt;dock_at_right
                        extension = 600.

  create object alv_right
              exporting i_parent = dockingright.

  call method alv_right-&amp;gt;set_table_for_first_display
     exporting
          i_structure_name       = 'T001W'
     changing
          it_outtab       = it001w[].

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:14:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abt-docking-container/m-p/2500554#M564989</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-17T14:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: abt docking container?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abt-docking-container/m-p/2500555#M564990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:17:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abt-docking-container/m-p/2500555#M564990</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T14:17:14Z</dc:date>
    </item>
  </channel>
</rss>

