<?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: info about docking container in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-about-docking-container/m-p/3987103#M952508</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A SAP Container is a control that accommodates other controls, such as the SAP Tree Control, SAP Picture Control, SAP Textedit Control, SAP Splitter Control, and so on. It manages these controls logically in a collection, and provides a physical area in which they are displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All controls live in a container. Since containers are themselves controls, you can nest them. The container is the parent of the control within it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jun 2008 14:03:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-18T14:03:14Z</dc:date>
    <item>
      <title>info about docking container</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-about-docking-container/m-p/3987100#M952505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you pls tell me what exactly is this docking container. how different it is from the normal container?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What additional functionality does docking container have compared to normal container?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 13:58:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-about-docking-container/m-p/3987100#M952505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T13:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: info about docking container</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-about-docking-container/m-p/3987101#M952506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the SAP Docking Container to attach one or more areas to a screen . You can attach an area to any or all of the four edges of the screen (top, bottom, left, or right). The screen is made smaller to accommodate the docking container. You can detach the docking container from the screen (floating) and reattach it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The behavior of the areas in the container is determined by the sequence in which they are initialized. Docking Containers are attached to the screen from the inside out. This means that when you create a second container, it is attached to the edge of the screen, and the container that was already there is pushed outwards. From a purely technical point of view, you can attach any number of docking containers to a screen. However, remember that using too many can make your application confusing for the user.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 14:00:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-about-docking-container/m-p/3987101#M952506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T14:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: info about docking container</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-about-docking-container/m-p/3987102#M952507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are five kinds of SAP Containers: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP Custom Container&lt;/P&gt;&lt;P&gt;The SAP Custom Container allows you to display controls in an area defined on a normal screen using the Screen Painter.&lt;/P&gt;&lt;P&gt;Class: CL_GUI_CUSTOM_CONTAINER &lt;/P&gt;&lt;P&gt;SAP Dialog Box Container &lt;/P&gt;&lt;P&gt;The SAP Dialog Box container allows you to display controls in an amodal dialog box or fullscreen.&lt;/P&gt;&lt;P&gt;Class: CL_GUI_DIALOGBOX_CONTAINER &lt;/P&gt;&lt;P&gt;SAP Docking Container &lt;/P&gt;&lt;P&gt;The SAP Docking Container allows you to attach a control to any of the four edges of a screen as a resizable screen area. You can also detach it so that it becomes an independent amodal dialog box. &lt;/P&gt;&lt;P&gt;Class: CL_GUI_DOCKING_CONTAINER &lt;/P&gt;&lt;P&gt;SAP Splitter Container&lt;/P&gt;&lt;P&gt;The SAP Splitter Container allows you to display more than one control in a given area by dividing it into cells.&lt;/P&gt;&lt;P&gt;Class: CL_GUI_SPLITTER_CONTAINER &lt;/P&gt;&lt;P&gt;SAP Easy Splitter Container&lt;/P&gt;&lt;P&gt;The SAP Easy Splitter Container allows you to divide an area into two cells with a control in each. The cells are separated by a moveable splitter bar. &lt;/P&gt;&lt;P&gt;Class: CL_GUI_EASY_SPLITTER_CONTAINER&lt;/P&gt;&lt;P&gt;All SAP Containers have a common parent with the type CL_GUI_CONTROL. They are all derived from this basic container, and therefore all have the same object-oriented interface.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 14:02:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-about-docking-container/m-p/3987102#M952507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T14:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: info about docking container</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-about-docking-container/m-p/3987103#M952508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A SAP Container is a control that accommodates other controls, such as the SAP Tree Control, SAP Picture Control, SAP Textedit Control, SAP Splitter Control, and so on. It manages these controls logically in a collection, and provides a physical area in which they are displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All controls live in a container. Since containers are themselves controls, you can nest them. The container is the parent of the control within it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 14:03:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-about-docking-container/m-p/3987103#M952508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T14:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: info about docking container</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-about-docking-container/m-p/3987104#M952509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;use this link &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/d3/2955360b00a115e10000009b38f839/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/d3/2955360b00a115e10000009b38f839/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLZPEWARD POINTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Snehi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 14:12:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-about-docking-container/m-p/3987104#M952509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T14:12:56Z</dc:date>
    </item>
  </channel>
</rss>

