<?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 Container fullscreen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/container-fullscreen/m-p/5587474#M1273929</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;when you use a container to display an alv you can set the size in the layout of the dynpro. As several user have different settings for the computer screen, how can I assure that the container is displayed as a fullscreen never mind which settings the user have for their computer screens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 May 2009 08:29:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-07T08:29:49Z</dc:date>
    <item>
      <title>Container fullscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/container-fullscreen/m-p/5587474#M1273929</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;when you use a container to display an alv you can set the size in the layout of the dynpro. As several user have different settings for the computer screen, how can I assure that the container is displayed as a fullscreen never mind which settings the user have for their computer screens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 08:29:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/container-fullscreen/m-p/5587474#M1273929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-07T08:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Container fullscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/container-fullscreen/m-p/5587475#M1273930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use docking container instead of  Custom container ( nothing need to be placed on the screen like custom container)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For docking container you can refer RSDEMO_DOCKING_CONTROL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this instead of custom container to get ALV display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pseudo Code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_adhe_cn  : This ref to docking container&lt;/P&gt;&lt;P&gt;W_ADHB_GD : This ref of alv grid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;create the docking container&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CREATE OBJECT w_adhe_cn&lt;/P&gt;&lt;P&gt;                  EXPORTING repid     = repid&lt;/P&gt;&lt;P&gt;                            dynnr     = dynnr&lt;/P&gt;&lt;P&gt;                            side      = docking-&amp;gt;dock_at_left&lt;/P&gt;&lt;P&gt;                            extension = 2000.    "(A high valuewhich will cover the screen)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create the using the container &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CREATE OBJECT W_ADHB_GD&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        I_PARENT          = W_ADHB_CN&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        ERROR_CNTL_CREATE = 1&lt;/P&gt;&lt;P&gt;        ERROR_CNTL_INIT   = 2&lt;/P&gt;&lt;P&gt;        ERROR_CNTL_LINK   = 3&lt;/P&gt;&lt;P&gt;        ERROR_DP_CREATE   = 4&lt;/P&gt;&lt;P&gt;        others            = 5.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get the display using following method 'SET_TABLE_FOR_FIRST_DISPLAY'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL METHOD W_ADHB_GD-&amp;gt;SET_TABLE_FOR_FIRST_DISPLAY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 10:20:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/container-fullscreen/m-p/5587475#M1273930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-07T10:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Container fullscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/container-fullscreen/m-p/5587476#M1273931</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;Please refer to thread &lt;SPAN __jive_macro_name="thread" id="1329949"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 12:01:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/container-fullscreen/m-p/5587476#M1273931</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2009-05-07T12:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Container fullscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/container-fullscreen/m-p/5587477#M1273932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your ALV is going to occupy the whole screen, dont create a custom control on screen. Instead code like below.The complete screen will be used as CONTAINER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  CREATE OBJECT go_grid
    EXPORTING
      i_parent = cl_gui_container=&amp;gt;default_screen.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Jose&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 10:52:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/container-fullscreen/m-p/5587477#M1273932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-08T10:52:49Z</dc:date>
    </item>
  </channel>
</rss>

