<?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 Hide screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen/m-p/2397701#M533860</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem i am facing is like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is screen in which there are already 4 frames with different &lt;/P&gt;&lt;P&gt;fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have added 1 field at the bottom of the screen ( FIELD  A)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;hided all othe frames on the screens by doing loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Field is visible to me but at the bottom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want that field (FIELD A) to move upward at the top when all fields are hidden.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how i can do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2007 12:59:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-19T12:59:35Z</dc:date>
    <item>
      <title>Hide screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen/m-p/2397701#M533860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem i am facing is like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is screen in which there are already 4 frames with different &lt;/P&gt;&lt;P&gt;fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have added 1 field at the bottom of the screen ( FIELD  A)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;hided all othe frames on the screens by doing loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Field is visible to me but at the bottom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want that field (FIELD A) to move upward at the top when all fields are hidden.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how i can do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 12:59:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen/m-p/2397701#M533860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T12:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Hide screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen/m-p/2397702#M533861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following works for me - the group should disappear when all the fields in it are set as inactive (screen-active = '0' &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report zlocal_hide_group.

selection-screen begin of block blk1 with frame.
parameters:
  p_field1             like sy-datum.
selection-screen end of block blk1.

selection-screen begin of block blk2 with frame.
parameters:
  p_field2             like sy-datum.
selection-screen end of block blk2.

at selection-screen output.
  perform at_selection_screen_output.

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  at_selection_screen_output
*&amp;amp;---------------------------------------------------------------------*
form at_selection_screen_output.

  loop at screen.
    if screen-name cs 'P_FIELD1'. "the field &amp;amp; its label
      screen-input  = '0'.
      screen-active = '0'.
      modify screen.
    endif.
  endloop.

endform.                    "at_selection_screen_output&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2007 00:11:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen/m-p/2397702#M533861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-20T00:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Hide screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen/m-p/2397703#M533862</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;Hiding the fields by making them invisible will only make them invisible, but will still be take the same space.&lt;/P&gt;&lt;P&gt;So if you need to move the field A up you have to define it first. You cannot change the position of any field dynamically. You can only make them active, input enabled/disabled or invisible dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this explaination helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Richa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2007 06:11:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen/m-p/2397703#M533862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-20T06:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: Hide screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen/m-p/2397704#M533863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vikram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Add that new field at top of the screen and add other frames.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you hide the frames it will appear in top.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2007 06:39:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen/m-p/2397704#M533863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-20T06:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Hide screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen/m-p/2397705#M533864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks you all. I have put the field on the top.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Dec 2010 07:02:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen/m-p/2397705#M533864</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-09T07:02:06Z</dc:date>
    </item>
  </channel>
</rss>

