<?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: Screen resolution - ALV (OOp) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186661#M465699</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;I am already using Docking on Left&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  create object g_container_object
      exporting side = cl_gui_docking_container=&amp;gt;dock_at_left
                extension = 270
                repid     = g_repid
                dynnr     = '0100'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any info related to scrolling controll?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 May 2007 14:54:38 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2007-05-02T14:54:38Z</dc:date>
    <item>
      <title>Screen resolution - ALV (OOp)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186659#M465697</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 ALV Tree screen like the following . If i execute this thru my system, the screen fully fits into my screen, but if it try in some other system the screen not fully fit in one screen , some of the fields displayed in the screen is going out of the screen, the user need to scroll it see the contents. I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ALV how should i maintained the same screen resolution to all users?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
--------------------------------------------------------
 Node       |No:______         Date: ________
     a      |Desc: ________________________ Deleted : _
     b      |   (Here above field are editable)
     c      |-------------------------------------------
     d      |
     e      |
     f      |
     g      |
            |          Here i have an ALV Editable Grid
            |
            |
            |
--------------------------------------------------------
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 14:35:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186659#M465697</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-05-02T14:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: Screen resolution - ALV (OOp)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186660#M465698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think its actaully to do with the users machines system Display settings, i.e. tehre screen resolution will be differnet from yours.  To get round this I usually use dokcing containers and just fill the screen with the docking container so it fills eeryones screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF cl_gui_alv_grid=&amp;gt;offline( ) is initial.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT ref_docking&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            SIDE        = cl_gui_docking_container=&amp;gt;dock_at_right&lt;/P&gt;&lt;P&gt;            EXTENSION   = 1400 .   " fills screen even for small fonts&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;create tree control&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  create object ref_alv_tree&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;        parent              = ref_docking      " ref_tree_container&lt;/P&gt;&lt;P&gt;        node_selection_mode = cl_gui_column_tree=&amp;gt;node_sel_mode_single&lt;/P&gt;&lt;P&gt;        item_selection      = 'X'&lt;/P&gt;&lt;P&gt;        no_html_header      = ''&lt;/P&gt;&lt;P&gt;        no_toolbar          = ''&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;        cntl_error                   = 1&lt;/P&gt;&lt;P&gt;        cntl_system_error            = 2&lt;/P&gt;&lt;P&gt;        create_error                 = 3&lt;/P&gt;&lt;P&gt;        lifetime_error               = 4&lt;/P&gt;&lt;P&gt;        illegal_node_selection_mode  = 5&lt;/P&gt;&lt;P&gt;        failed                       = 6&lt;/P&gt;&lt;P&gt;        illegal_column_name          = 7.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message E000 WITH 'Error creating ALV TREE Object'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 14:45:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186660#M465698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T14:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Screen resolution - ALV (OOp)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186661#M465699</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;I am already using Docking on Left&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  create object g_container_object
      exporting side = cl_gui_docking_container=&amp;gt;dock_at_left
                extension = 270
                repid     = g_repid
                dynnr     = '0100'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any info related to scrolling controll?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 14:54:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186661#M465699</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-05-02T14:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Screen resolution - ALV (OOp)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186662#M465700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may not get it to look exactly the same on all screen resolutions, but you can help with resizing.  Double click on the container inside the screen in screen painter.  Now checking the checkboxes for resizing,  horontial as well as vertical.&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>Wed, 02 May 2007 14:54:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186662#M465700</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-05-02T14:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: Screen resolution - ALV (OOp)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186663#M465701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh, if you are using a docking container, I guess the resizing won't work.&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>Wed, 02 May 2007 14:55:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186663#M465701</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-05-02T14:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: Screen resolution - ALV (OOp)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186664#M465702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this is not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks all &lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 15:14:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186664#M465702</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-05-02T15:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Screen resolution - ALV (OOp)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186665#M465703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Increase the docking containers extension.  I use 1400 because this fill's the screen even for small fonts.  Go to the control pannels dispaly or screen settings and in the advnaced tab change the screen resolution, then you can test your docking container for differnet font sizes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 21:26:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-alv-oop/m-p/2186665#M465703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T21:26:12Z</dc:date>
    </item>
  </channel>
</rss>

