<?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: FUNCTION KEYS IN SCREEN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515349#M237277</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swathi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check whether you have set the PF-STATUS in PBO of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PF-STATUS, specify BACK button and activate the PF-STATUS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Aug 2006 01:36:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-24T01:36:18Z</dc:date>
    <item>
      <title>FUNCTION KEYS IN SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515345#M237273</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;i HAVE A MODAL DIALOG SCRREN , I HAVE TO SAVE DATA AND ONCE SAVED THE SCREEN HAS TO BE INACTIVE FOR INPUT THEN I USED &lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;SCREEN INPUT = 0.&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;bUT I HAVE A BACK BUTTON ON THIS TO COME BACK TO NORMAL SCREEN ,BUT WHEN I USE THE ABOVE CODE THE BACK BUTTON ALSO BECOMES INACTIVE,IS THERE A WAY THAT I CAN KEEP BACK BUTTON ACTIVE AND REMAINING THINGS IN ACTIVE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CAN I HAVE FUNCTION KEYS ON MODAL DIALOG BOX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 20:26:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515345#M237273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T20:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION KEYS IN SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515346#M237274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, when you use the the LOOP, check the name of the screen element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

LOOP AT SCREEN.
&amp;lt;b&amp;gt;if screen-name = 'P_FIELD'.&amp;lt;/b&amp;gt;
SCREEN INPUT = 0.
MODIFY SCREEN.
&amp;lt;b&amp;gt;endif.&amp;lt;/b&amp;gt;
ENDLOOP.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&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, 23 Aug 2006 20:46:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515346#M237274</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-23T20:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION KEYS IN SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515347#M237275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;use the below code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = &amp;lt;screen field name&amp;gt;.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 20:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515347#M237275</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-08-23T20:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION KEYS IN SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515348#M237276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;on your screen give all the fields you wish to make protected the same group1 name, eg MOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then put this in the PBO:&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'MOD'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 23:26:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515348#M237276</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-08-23T23:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION KEYS IN SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515349#M237277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swathi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check whether you have set the PF-STATUS in PBO of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PF-STATUS, specify BACK button and activate the PF-STATUS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2006 01:36:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515349#M237277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-24T01:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION KEYS IN SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515350#M237278</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; Add lines in bold and try using your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; if not screen-name cp 'BACK'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;   SCREEN INPUT = 0.&lt;/P&gt;&lt;P&gt;   MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; endif.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2006 04:40:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-keys-in-screen/m-p/1515350#M237278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-24T04:40:40Z</dc:date>
    </item>
  </channel>
</rss>

