<?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 Increasing GRID size while using CL_GUI_ALV_GRID in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-grid-size-while-using-cl-gui-alv-grid/m-p/8445139#M1648974</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have created ALV using &lt;STRONG&gt;CL_GUI_ALV_GRID&lt;/STRONG&gt;. ALV grid is contained in a Container and I have kept the size of container to maximum.&lt;/P&gt;&lt;P&gt;Still while viewing this ALV on client's monitor (may be with different resolution), it covers only &lt;EM&gt;a part of screen&lt;/EM&gt;, thus wasting extra screen space and making user to use horizontal and vertical scroll unnecessarily.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise what could be done.&lt;/P&gt;&lt;P&gt;I don't want to create ALV using some other way, say 'function module 'REUSE_ALV_GRID_DISPLAY'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&amp;lt;&amp;lt; Moderator message - Please do not promise points &amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&amp;lt;&amp;lt; Moderator message - The answers in the forum are provided by volunteers. Please do not ask for help ASAP. &amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Dec 8, 2011 12:34 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Dec 2011 17:29:43 GMT</pubDate>
    <dc:creator>former_member209920</dc:creator>
    <dc:date>2011-12-08T17:29:43Z</dc:date>
    <item>
      <title>Increasing GRID size while using CL_GUI_ALV_GRID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-grid-size-while-using-cl-gui-alv-grid/m-p/8445139#M1648974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have created ALV using &lt;STRONG&gt;CL_GUI_ALV_GRID&lt;/STRONG&gt;. ALV grid is contained in a Container and I have kept the size of container to maximum.&lt;/P&gt;&lt;P&gt;Still while viewing this ALV on client's monitor (may be with different resolution), it covers only &lt;EM&gt;a part of screen&lt;/EM&gt;, thus wasting extra screen space and making user to use horizontal and vertical scroll unnecessarily.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise what could be done.&lt;/P&gt;&lt;P&gt;I don't want to create ALV using some other way, say 'function module 'REUSE_ALV_GRID_DISPLAY'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&amp;lt;&amp;lt; Moderator message - Please do not promise points &amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&amp;lt;&amp;lt; Moderator message - The answers in the forum are provided by volunteers. Please do not ask for help ASAP. &amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Dec 8, 2011 12:34 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2011 17:29:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-grid-size-while-using-cl-gui-alv-grid/m-p/8445139#M1648974</guid>
      <dc:creator>former_member209920</dc:creator>
      <dc:date>2011-12-08T17:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing GRID size while using CL_GUI_ALV_GRID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-grid-size-while-using-cl-gui-alv-grid/m-p/8445140#M1648975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: obj_container   TYPE REF TO cl_gui_custom_container,
 
CREATE OBJECT obj_container
    EXPORTING
      container_name = 'CC_CONTAINER'
      style          = cl_gui_custom_container=&amp;gt;ws_maximizebox.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for Screen resizing :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call SE51 in layout editor; double-click on the container and declare "huge" dimensions (for a 100" screen) and check the resize box giving minimal dimensions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The container will automatically adapt to screen size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mithun Shetty on Dec 8, 2011 11:19 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2011 17:45:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-grid-size-while-using-cl-gui-alv-grid/m-p/8445140#M1648975</guid>
      <dc:creator>mithun_shetty4</dc:creator>
      <dc:date>2011-12-08T17:45:41Z</dc:date>
    </item>
  </channel>
</rss>

