<?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 Boxes adjust automatically? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/boxes-adjust-automatically/m-p/3164166#M752684</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 have module pool screen. within that i have 3 boxes one below one that contains some input fields in each box.. As per certain conditions i am hiding 2nd box using program code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie&lt;/P&gt;&lt;P&gt;   Loop at screen&lt;/P&gt;&lt;P&gt;     screen-input&lt;/P&gt;&lt;P&gt;   endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After hiding 2nd box the 3rd box automatiically adjust the space. Currently this is not happening. After hiding the second box , that space is showing blank , and 3rd below is not coming into place of 2nd box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sa_R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Dec 2007 13:55:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-14T13:55:57Z</dc:date>
    <item>
      <title>Boxes adjust automatically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/boxes-adjust-automatically/m-p/3164166#M752684</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 have module pool screen. within that i have 3 boxes one below one that contains some input fields in each box.. As per certain conditions i am hiding 2nd box using program code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie&lt;/P&gt;&lt;P&gt;   Loop at screen&lt;/P&gt;&lt;P&gt;     screen-input&lt;/P&gt;&lt;P&gt;   endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After hiding 2nd box the 3rd box automatiically adjust the space. Currently this is not happening. After hiding the second box , that space is showing blank , and 3rd below is not coming into place of 2nd box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sa_R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 13:55:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/boxes-adjust-automatically/m-p/3164166#M752684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T13:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: Boxes adjust automatically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/boxes-adjust-automatically/m-p/3164167#M752685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It wont take the 2nd place. All it will do is hide the field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 13:59:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/boxes-adjust-automatically/m-p/3164167#M752685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T13:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Boxes adjust automatically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/boxes-adjust-automatically/m-p/3164168#M752686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Martin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other way . to solve this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sa_R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 14:11:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/boxes-adjust-automatically/m-p/3164168#M752686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T14:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Boxes adjust automatically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/boxes-adjust-automatically/m-p/3164169#M752687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use SCEREEN-ACTIVE instead of the SCREEN-INPUT. It will fill up the empty space between first and third box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT SCREEN.
  IF SCREEN-GROUP1 = 'GP1'.
    SCREEN-ACTIVE = 0.
    MODIFY SCREEN.
  ENDIF.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 14:17:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/boxes-adjust-automatically/m-p/3164169#M752687</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-12-14T14:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: Boxes adjust automatically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/boxes-adjust-automatically/m-p/3164170#M752688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;keep the 2nd box in third place and try playing with it .. if it works..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in loop at screen &lt;/P&gt;&lt;P&gt; screen-invisible = 'X'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 14:19:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/boxes-adjust-automatically/m-p/3164170#M752688</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2007-12-14T14:19:25Z</dc:date>
    </item>
  </channel>
</rss>

