<?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 Re: What create docking container on a subscreen? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909763#M1329538</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is not change in docking container creation code only thing is you have take container on the subscreen and &lt;/P&gt;&lt;P&gt;call the docking container creation code in PBO of the subscreen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Augustin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Jul 2009 08:58:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-23T08:58:43Z</dc:date>
    <item>
      <title>What create docking container on a subscreen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909760#M1329535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to create docking container on a subscreen?&lt;/P&gt;&lt;P&gt;What parametr "parent" in constructor CL_GUI_DOCKING_CONTAINER?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Mike Fedorov&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 13:48:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909760#M1329535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T13:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: What create docking container on a subscreen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909761#M1329536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's an example...Kindly steal from Rich Heilman -;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report zrich_0001 .
 
data:
      dockingleft  type ref to cl_gui_docking_container,
      text_editor    type ref to cl_gui_textedit,
      repid type syrepid.
 
data: itext type table of tline-tdline,
      xtext type tline-tdline.
 
parameters: p_check.
 
at selection-screen output.
 
  repid = sy-repid.
 
  create object dockingleft
              exporting repid     = repid
                        dynnr     = sy-dynnr
                        side      = dockingleft-&amp;gt;dock_at_left
                        extension = 1070.
 
  create object text_editor
              exporting
                   parent     = dockingleft.
 
  xtext = 'http:\\www.sap.com'.
  append xtext to itext.
 
  call method text_editor-&amp;gt;set_text_as_r3table
     exporting
           table              = itext
     exceptions
           others             = 1.
 
start-of-selection.
 
  call method text_editor-&amp;gt;get_text_as_r3table
     importing
           table              = itext
     exceptions
           others             = 1.
 
  loop at itext into xtext.
    write:/ xtext.
  endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 15:42:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909761#M1329536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T15:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: What create docking container on a subscreen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909762#M1329537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Alvaro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You give me the code of creating docking container on MAIN SCREEN.....&lt;/P&gt;&lt;P&gt;But my requirement is to create docking container on &lt;STRONG&gt;SUBSCREEN&lt;/STRONG&gt; and call it at subscreen area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;main screen is '0100' and sunscreen is '0101'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;MODULE STATUS_0100.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN SUB1 INCLUDING sy-repid v_dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN SUB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0100. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Docking container is created at subscreen '0101' and called at screen '0100'. Screen '0100' have a subscreen area 'SUB1' .&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;create object docking_alv
          exporting
             parent    = cl_gui_container=&amp;gt;screen0  "??????
             side        = cl_gui_docking_container=&amp;gt;dock_at_left
             dynnr     = '0101'.
            repid       = sy-repid
            extension = 230.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2009 05:41:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909762#M1329537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-23T05:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: What create docking container on a subscreen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909763#M1329538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is not change in docking container creation code only thing is you have take container on the subscreen and &lt;/P&gt;&lt;P&gt;call the docking container creation code in PBO of the subscreen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Augustin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2009 08:58:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909763#M1329538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-23T08:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: What create docking container on a subscreen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909764#M1329539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution for docking in  subscreen is ok ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thierry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 12:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909764#M1329539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-27T12:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: What create docking container on a subscreen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909765#M1329540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you try?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 17:46:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909765#M1329540</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2009-10-27T17:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: What create docking container on a subscreen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909766#M1329541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thierry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 15:37:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909766#M1329541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-28T15:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: What create docking container on a subscreen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909767#M1329542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tested the solution with subscreen and it is OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The post can be answered !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thierry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thierry on Oct 29, 2009 4:27 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 15:26:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-create-docking-container-on-a-subscreen/m-p/5909767#M1329542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T15:26:55Z</dc:date>
    </item>
  </channel>
</rss>

