<?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 active &amp; screen required in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-active-screen-required/m-p/2681764#M619915</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks ,How to find out the screen name??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Aug 2007 08:30:00 GMT</pubDate>
    <dc:creator>radhushankar</dc:creator>
    <dc:date>2007-08-14T08:30:00Z</dc:date>
    <item>
      <title>Screen active &amp; screen required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-active-screen-required/m-p/2681762#M619913</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;     can anyone explain me wats mean by Screen active &amp;amp; screen required??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 08:25:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-active-screen-required/m-p/2681762#M619913</guid>
      <dc:creator>radhushankar</dc:creator>
      <dc:date>2007-08-14T08:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Screen active &amp; screen required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-active-screen-required/m-p/2681763#M619914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Radhu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;case screen-name.&lt;/P&gt;&lt;P&gt;when 'parameter1'.&lt;/P&gt;&lt;P&gt;scree-active = 0. -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt; active = 0 means u r hiding the parameter field&lt;/P&gt;&lt;P&gt;endcase.&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;reward points to all helpful answers &lt;/P&gt;&lt;P&gt;kiran.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 08:28:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-active-screen-required/m-p/2681763#M619914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T08:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: Screen active &amp; screen required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-active-screen-required/m-p/2681764#M619915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks ,How to find out the screen name??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 08:30:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-active-screen-required/m-p/2681764#M619915</guid>
      <dc:creator>radhushankar</dc:creator>
      <dc:date>2007-08-14T08:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: Screen active &amp; screen required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-active-screen-required/m-p/2681765#M619916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Radhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please checkout this sample program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_MODIFY_SCREEN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;++++&lt;/P&gt;&lt;P&gt;ACTIVE, INPUT, OUTPUT, and INVISIBLE&lt;/P&gt;&lt;P&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 for the same table line are ignored. Conversely, setting INPUT = 0, OUTPUT = 0, and INVISIBLE = 1 sets ACTIVE to 0, and any further assignment to ACTIVE for the same table line will also 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;-&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;REQUIRED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you set REQUIRED = 1, a field that is ready for input is made mandatory. Users can only leave the screen when all mandatory fields contain an entry. Exception: Function codes with type E and modules with the AT EXIT-COMMAND addition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;===&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, ABY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 09:13:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-active-screen-required/m-p/2681765#M619916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T09:13:34Z</dc:date>
    </item>
  </channel>
</rss>

