<?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-invisible modify screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681294#M300256</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Aidan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ACTIVE, INPUT, OUTPUT, and INVISIBLE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;There are certain hierarchy rules between the components ACTIVE, INPUT, OUTPUT, and INVISIBLE. They also have different effects depending on their respective static settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ACTIVE component has no equivalent in the element attributes. Instead, it changes the components INPUT, OUTPUT, and INVISIBLE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the beginning of the PBO, ACTIVE is always set to 1, regardless of the static attribute settings. Setting ACTIVE to 0 automatically sets INPUT = 0, OUTPUT = 0, and INVISIBLE = 1. Any other changes to the settings of INPUT; OUTPUT, and INVISIBLE to the current screen element are ignored. Conversely, setting INPUT = 0, OUTPUT = 0, and INVISIBLE = 1 automatically sets ACTIVE to 0, and any further assignment to ACTIVE for the current screen element will be ignored. The setting ACTIVE = 1 has no other effect on the attributes. The only purpose of the ACTIVE component is to allow you to make a screen field inactive through a single assignment. You should particularly note that a module call linked to a FIELD statement in the screen flow logic is always executed, even when SCREEN-ACTIVE = 0 for the field in question. If you want to prevent a module from being processed for an inactive field, you must specify the FIELD- and MODULE statements separately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/loop_a03.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/loop_a03.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this 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>Tue, 14 Nov 2006 12:43:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-14T12:43:04Z</dc:date>
    <item>
      <title>screen-invisible modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681287#M300249</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 trying to use screen-invisible but some sections work and some don't. I have debugged it and the screen-invisible changes everytime but sometimes when the 'modify screen' line is executed the 'invisible' value reverts to the original value?   Any ideas? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the code from the PBO:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT SCREEN. 
    IF screen-name = 'SLOCSCAN'. 
        screen-invisible = '1'.     "this one works    
    ENDIF. 
    IF screen-name = 'ZRFSCREEN-LGORT'. 
        screen-invisible = '1'.     "this one works 
        screen-input     = '0'.     "this one works
     ENDIF. 
     IF screen-name = 'MATSCAN'. 
       screen-invisible = '0'.      "this one does NOT work. Changes at modify Screen
     ENDIF. 
     IF screen-name = 'ZRFSCREEN-MATNR'. 
        screen-invisible = '0'.     "this one works
        screen-input     = '1'.     "this one works
     ENDIF. 
     IF screen-name = 'SLOC_OK'. 
        screen-invisible = '0'.    "this one does NOT work. Changes at modify Screen
     ENDIF. 
     modify screen. 
ENDLOOP&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 12:16:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681287#M300249</guid>
      <dc:creator>aidan_mulcahy</dc:creator>
      <dc:date>2006-11-14T12:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: screen-invisible modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681288#M300250</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;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;remove the quotes and try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN. &lt;/P&gt;&lt;P&gt;    IF screen-name = 'SLOCSCAN'. &lt;/P&gt;&lt;P&gt;        screen-invisible = 1.     "this one works    &lt;/P&gt;&lt;P&gt;    ENDIF. &lt;/P&gt;&lt;P&gt;    IF screen-name = 'ZRFSCREEN-LGORT'. &lt;/P&gt;&lt;P&gt;        screen-invisible = 1.     "this one works &lt;/P&gt;&lt;P&gt;        screen-input     = 0.     "this one works&lt;/P&gt;&lt;P&gt;     ENDIF. &lt;/P&gt;&lt;P&gt;     IF screen-name = 'MATSCAN'. &lt;/P&gt;&lt;P&gt;       screen-invisible = 0.      "this one does NOT work. Changes at modify Screen&lt;/P&gt;&lt;P&gt;     ENDIF. &lt;/P&gt;&lt;P&gt;     IF screen-name = 'ZRFSCREEN-MATNR'. &lt;/P&gt;&lt;P&gt;        screen-invisible = 0.     "this one works&lt;/P&gt;&lt;P&gt;        screen-input     = 1.     "this one works&lt;/P&gt;&lt;P&gt;     ENDIF. &lt;/P&gt;&lt;P&gt;     IF screen-name = 'SLOC_OK'. &lt;/P&gt;&lt;P&gt;        screen-invisible =  0.    &lt;/P&gt;&lt;P&gt;     ENDIF. &lt;/P&gt;&lt;P&gt;     modify screen. &lt;/P&gt;&lt;P&gt;ENDLOOP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 12:24:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681288#M300250</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-11-14T12:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: screen-invisible modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681289#M300251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With the invisible , you can also set active as 0. &lt;/P&gt;&lt;P&gt;Try the same. &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Baburaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 12:25:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681289#M300251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T12:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: screen-invisible modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681290#M300252</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;Along with setting the invisible to 0, you also need to set the input field or the active field. Try out the combination of two.&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>Tue, 14 Nov 2006 12:28:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681290#M300252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T12:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: screen-invisible modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681291#M300253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Try out like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN. &lt;/P&gt;&lt;P&gt;    IF screen-name = 'SLOCSCAN'. &lt;/P&gt;&lt;P&gt;        screen-invisible = '1'.     "this one works    &lt;/P&gt;&lt;P&gt;    ENDIF. &lt;/P&gt;&lt;P&gt;    IF screen-name = 'ZRFSCREEN-LGORT'. &lt;/P&gt;&lt;P&gt;        screen-invisible = '1'.     "this one works &lt;/P&gt;&lt;P&gt;        screen-input     = '0'.     "this one works&lt;/P&gt;&lt;P&gt;     ENDIF. &lt;/P&gt;&lt;P&gt;     IF screen-name = 'MATSCAN'. &lt;/P&gt;&lt;P&gt;       screen-invisible = '0'.      "this one does NOT work. Changes at modify Screen&lt;/P&gt;&lt;P&gt;screen-input     = '0'.       &lt;/P&gt;&lt;P&gt;ENDIF. &lt;/P&gt;&lt;P&gt;     IF screen-name = 'ZRFSCREEN-MATNR'. &lt;/P&gt;&lt;P&gt;        screen-invisible = '0'.     "this one works&lt;/P&gt;&lt;P&gt;        screen-input     = '1'.     "this one works&lt;/P&gt;&lt;P&gt;     ENDIF. &lt;/P&gt;&lt;P&gt;     IF screen-name = 'SLOC_OK'. &lt;/P&gt;&lt;P&gt;        screen-invisible = '0'.    "this one does NOT work. Changes at modify Screen&lt;/P&gt;&lt;P&gt;        screen-input     = '0'.  &lt;/P&gt;&lt;P&gt;ENDIF. &lt;/P&gt;&lt;P&gt;     modify screen. &lt;/P&gt;&lt;P&gt;ENDLOOP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bcoz when u r making the screen fields invisible,u have to make screen-input as 0 also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rega&lt;/P&gt;&lt;P&gt;Manas Ranjan Panda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 12:30:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681291#M300253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T12:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: screen-invisible modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681292#M300254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Baburaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oooops!!! That did it.&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;Anver,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, but that made no difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More replied while typing - thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 12:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681292#M300254</guid>
      <dc:creator>aidan_mulcahy</dc:creator>
      <dc:date>2006-11-14T12:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: screen-invisible modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681293#M300255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Did u check if u have done any settings while designing this screen field? Make sure it does not affect your modifications.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 12:33:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681293#M300255</guid>
      <dc:creator>former_member283648</dc:creator>
      <dc:date>2006-11-14T12:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: screen-invisible modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681294#M300256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Aidan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ACTIVE, INPUT, OUTPUT, and INVISIBLE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;There are certain hierarchy rules between the components ACTIVE, INPUT, OUTPUT, and INVISIBLE. They also have different effects depending on their respective static settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ACTIVE component has no equivalent in the element attributes. Instead, it changes the components INPUT, OUTPUT, and INVISIBLE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the beginning of the PBO, ACTIVE is always set to 1, regardless of the static attribute settings. Setting ACTIVE to 0 automatically sets INPUT = 0, OUTPUT = 0, and INVISIBLE = 1. Any other changes to the settings of INPUT; OUTPUT, and INVISIBLE to the current screen element are ignored. Conversely, setting INPUT = 0, OUTPUT = 0, and INVISIBLE = 1 automatically sets ACTIVE to 0, and any further assignment to ACTIVE for the current screen element will be ignored. The setting ACTIVE = 1 has no other effect on the attributes. The only purpose of the ACTIVE component is to allow you to make a screen field inactive through a single assignment. You should particularly note that a module call linked to a FIELD statement in the screen flow logic is always executed, even when SCREEN-ACTIVE = 0 for the field in question. If you want to prevent a module from being processed for an inactive field, you must specify the FIELD- and MODULE statements separately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/loop_a03.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/loop_a03.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this 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>Tue, 14 Nov 2006 12:43:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible-modify-screen/m-p/1681294#M300256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T12:43:04Z</dc:date>
    </item>
  </channel>
</rss>

