<?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: Need to change the F1 function code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-change-the-f1-function-code/m-p/7620391#M1570238</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;&lt;/P&gt;&lt;P&gt;You can use ON HELP REQUEST for F1 help and ON VALUE REQUEST for F4 help if it is a report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is module pool use Process on Help Request and Process on Value Request respectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
at selection-screen on help-request for s_vbeln-low.
    message 'F1 hitted' type 'I'.

at selection-screen on value-request for s_vbeln-low.
    message 'F4 hitted' type 'I'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anmol.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Jan 2011 13:49:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-01-20T13:49:53Z</dc:date>
    <item>
      <title>Need to change the F1 function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-change-the-f1-function-code/m-p/7620388#M1570235</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 created a custom screen in which there are two push button. I need to create keyboard shortcuts using F1 and F4 function keys. &lt;/P&gt;&lt;P&gt;F1 and F4 are standard shortcuts. In my program, I need to use the F1 to go next screen and F4 is to clear the input fields.&lt;/P&gt;&lt;P&gt;F4 is working fine. It is clearing the input fields. But F1 doesnt work. When I press F1, it says "function code cannot be assigned"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What could be the issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ezhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jan 2011 09:52:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-change-the-f1-function-code/m-p/7620388#M1570235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-20T09:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Need to change the F1 function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-change-the-f1-function-code/m-p/7620389#M1570236</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 the below way..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


process on value-request.

  field &amp;lt;field-name&amp;gt;    module f1_nextscreen.


module f1_nextscreen input.

      leave to screen &amp;lt;screennumber&amp;gt;.
endmoduel.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jan 2011 10:00:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-change-the-f1-function-code/m-p/7620389#M1570236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-20T10:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Need to change the F1 function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-change-the-f1-function-code/m-p/7620390#M1570237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;F1 is always SAP's HELP key....I wouldn't change that....use F2 or something else.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jan 2011 13:23:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-change-the-f1-function-code/m-p/7620390#M1570237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-20T13:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: Need to change the F1 function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-change-the-f1-function-code/m-p/7620391#M1570238</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;&lt;/P&gt;&lt;P&gt;You can use ON HELP REQUEST for F1 help and ON VALUE REQUEST for F4 help if it is a report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is module pool use Process on Help Request and Process on Value Request respectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
at selection-screen on help-request for s_vbeln-low.
    message 'F1 hitted' type 'I'.

at selection-screen on value-request for s_vbeln-low.
    message 'F4 hitted' type 'I'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anmol.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jan 2011 13:49:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-change-the-f1-function-code/m-p/7620391#M1570238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-20T13:49:53Z</dc:date>
    </item>
  </channel>
</rss>

