<?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: using FUnction keys on selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848067#M1591694</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to use function keys like 'F12' or "F07' or 'F05' tp submit a report when i am on any selection,not by making buttons on the application toolbar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 May 2011 11:28:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-05-03T11:28:44Z</dc:date>
    <item>
      <title>using FUnction keys on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848065#M1591692</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 want to submit a report if the user presses any assigned function key when he is on the selection screen of a t-code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i capture the commands of function key on selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 10:09:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848065#M1591692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-03T10:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: using FUnction keys on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848066#M1591693</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 below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

TABLES sscrfields.

INITIALIZATION.
PARAMETERS : p_1 TYPE c.

SELECTION-SCREEN : FUNCTION KEY 1.


SSCRFIELDS-FUNCTXT_01 = 'Report'.

SELECTION-SCREEN : FUNCTION KEY 2.

SSCRFIELDS-FUNCTXT_02 = 'Report2'.

AT SELECTION-SCREEN.
  IF sscrfields-ucomm = 'FC01'.
    SUBMIT ZXXX1 VIA SELECTION-SCREEN AND RETURN.

  ENDIF.


  IF sscrfields-ucomm = 'FC01'.
    SUBMIT ZXXX2 VIA SELECTION-SCREEN AND RETURN.

  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 10:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848066#M1591693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-03T10:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: using FUnction keys on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848067#M1591694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to use function keys like 'F12' or "F07' or 'F05' tp submit a report when i am on any selection,not by making buttons on the application toolbar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 11:28:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848067#M1591694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-03T11:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: using FUnction keys on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848068#M1591695</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;as u want this functionality on selection screen so when u make a button then SAP by itself give a function key to those buttons like for button1 - Ctrl + F1 , for button2 - Ctrl + F2 ....&lt;/P&gt;&lt;P&gt;and i dont thing u can give like F12 or F7 of ur own but if anyone know how to do then plz reply...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: mihir6666 on May 3, 2011 1:43 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 11:43:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848068#M1591695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-03T11:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: using FUnction keys on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848069#M1591696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Using PF-Status  Paint  the menu and assign Function key for your buttons &lt;/P&gt;&lt;P&gt;Go to Utilities --&amp;gt; F key Consistency and assign function key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajashiva Ramalingam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 12:33:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848069#M1591696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-03T12:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: using FUnction keys on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848070#M1591697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI i got the answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either we can have Set PF-Status in the event INITIALIZATION or we can use it by using the function module in AT SELECTION-SCREEN OUTPUT and then caputre the command in AT SELECTION-SCREEN and do the respective coding as per requirement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnx a lot for ur help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2011 10:01:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-function-keys-on-selection-screen/m-p/7848070#M1591697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-04T10:01:35Z</dc:date>
    </item>
  </channel>
</rss>

