<?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: Shortcut Key to PushButton in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/shortcut-key-to-pushbutton/m-p/3994573#M954292</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it module pool program ? then you can do -&amp;gt; click on GUI at PBO -&amp;gt; now you will be at menu painter(SE41 Screen)-&amp;gt; below see the Function code -&amp;gt; here add your push button user command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jun 2008 16:05:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-18T16:05:25Z</dc:date>
    <item>
      <title>Shortcut Key to PushButton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shortcut-key-to-pushbutton/m-p/3994571#M954290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me if it is possible to map a shortcut key to a pushbutton on a selection screen? For example, when user presses key F10, then the program will execute the code flow associated to a button on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes, how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Kind regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 15:49:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shortcut-key-to-pushbutton/m-p/3994571#M954290</guid>
      <dc:creator>BGarcia</dc:creator>
      <dc:date>2008-06-18T15:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: Shortcut Key to PushButton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shortcut-key-to-pushbutton/m-p/3994572#M954291</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;On selection-screen u can assign only 5 your own buttons, the keys of keyboards assigned to them are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-  CTRL+F1&lt;/P&gt;&lt;P&gt;-  CTRL+F2&lt;/P&gt;&lt;P&gt;-  CTRL+F3&lt;/P&gt;&lt;P&gt;-  CTRL+F4&lt;/P&gt;&lt;P&gt;-  CTRL+F5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U have to check the ok-code value in the event AT SELECTION-SCREEN, these butto can hav a code FC&amp;lt;XX&amp;gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES SSCRFIELDS.

PARAMETERS: P_BUKRS LIKE T001-BUKRS.

SELECTION-SCREEN FUNCTION KEY 1.
SELECTION-SCREEN FUNCTION KEY 2.
SELECTION-SCREEN FUNCTION KEY 3.
SELECTION-SCREEN FUNCTION KEY 4.
SELECTION-SCREEN FUNCTION KEY 5.

INITIALIZATION.
  MOVE: '@01@ 1' TO SSCRFIELDS-FUNCTXT_01,
        '@02@ 2' TO SSCRFIELDS-FUNCTXT_02,
        '@03@ 3' TO SSCRFIELDS-FUNCTXT_03,
        '@04@ 4' TO SSCRFIELDS-FUNCTXT_04,
        '@05@ 5' TO SSCRFIELDS-FUNCTXT_05.

AT SELECTION-SCREEN.


  CASE SSCRFIELDS-UCOMM.
    WHEN 'FC01'. MESSAGE I208(00) WITH 'You have pressed KEY CTRL+F1'.
    WHEN 'FC02'. MESSAGE I208(00) WITH 'You have pressed KEY CTRL+F2'.
    WHEN 'FC03'. MESSAGE I208(00) WITH 'You have pressed KEY CTRL+F3'.
    WHEN 'FC04'. MESSAGE I208(00) WITH 'You have pressed KEY CTRL+F4'.
    WHEN 'FC05'. MESSAGE I208(00) WITH 'You have pressed KEY CTRL+F5'.
  ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 16:01:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shortcut-key-to-pushbutton/m-p/3994572#M954291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T16:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Shortcut Key to PushButton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shortcut-key-to-pushbutton/m-p/3994573#M954292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it module pool program ? then you can do -&amp;gt; click on GUI at PBO -&amp;gt; now you will be at menu painter(SE41 Screen)-&amp;gt; below see the Function code -&amp;gt; here add your push button user command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 16:05:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shortcut-key-to-pushbutton/m-p/3994573#M954292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T16:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Shortcut Key to PushButton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shortcut-key-to-pushbutton/m-p/3994574#M954293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 16:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shortcut-key-to-pushbutton/m-p/3994574#M954293</guid>
      <dc:creator>BGarcia</dc:creator>
      <dc:date>2008-06-18T16:47:19Z</dc:date>
    </item>
  </channel>
</rss>

