<?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: PUSH BUTTONS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-buttons/m-p/2174398#M461658</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Double click on PUSH and in next screen create your function key for push button and assign it to the application bar or menu wherever you want. and activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Apr 2007 19:11:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-26T19:11:31Z</dc:date>
    <item>
      <title>PUSH BUTTONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-buttons/m-p/2174397#M461657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cAN ANY ONE TELL ME HOW TO ADD PUSH BUTTONS ON THE LIST.&lt;/P&gt;&lt;P&gt;I KNOW WE CAN DO USE SET PF STATUS 'PUSH'.&lt;/P&gt;&lt;P&gt;BUT WHAT AFTER THAT PLZ TELL ME WITH NAVIGATIONS........&lt;/P&gt;&lt;P&gt;THANKS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 18:55:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-buttons/m-p/2174397#M461657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T18:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: PUSH BUTTONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-buttons/m-p/2174398#M461658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Double click on PUSH and in next screen create your function key for push button and assign it to the application bar or menu wherever you want. and activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 19:11:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-buttons/m-p/2174398#M461658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T19:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: PUSH BUTTONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-buttons/m-p/2174399#M461659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Ravinder,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please follow the instructions to create and enable pushbuttons on lists:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
1-&amp;gt; use SET PF-STATUS '0001' in your program.
2-&amp;gt; double click on '0001' to navigate to the menu painter
3-&amp;gt; expand the node for application tool bar, enter push button name (say, NAME) 
      and enter the function code (for eg. PUSH1), icon etc...
4-&amp;gt; activate the gui status and navigate back to the program clicking back button
5-&amp;gt; in the abap program, use the following code

AT-USER-COMMAND.
     case sy-ucomm.
          when 'PUSH1'.
                  write:/ 'Ravinder Reddy'.
     endcase.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result is, when you execute the list, and on clicking the NAME button&lt;/P&gt;&lt;P&gt;your name will be displayed in a new list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Sajan Joseph.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 19:51:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-buttons/m-p/2174399#M461659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T19:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: PUSH BUTTONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-buttons/m-p/2174400#M461660</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 this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'AAA'. "Set the PF status for PRINT &lt;/P&gt;&lt;P&gt;                       "add icon,give some FCODE &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  PERFORM DISPLAY_REPORT.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    WHEN 'PRNT'.&lt;/P&gt;&lt;P&gt;      DATA: L_PARAMS TYPE PRI_PARAMS,&lt;/P&gt;&lt;P&gt;            L_VALID TYPE C.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'GET_PRINT_PARAMETERS'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          IMMEDIATELY            = 'X'&lt;/P&gt;&lt;P&gt;          LINE_SIZE              = 220 &lt;/P&gt;&lt;P&gt;          RELEASE                = 'X'&lt;/P&gt;&lt;P&gt;          MODE                   = 'CURRENT'&lt;/P&gt;&lt;P&gt;          NO_DIALOG              = 'X' &lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          OUT_PARAMETERS         = L_PARAMS&lt;/P&gt;&lt;P&gt;          VALID                  = L_VALID&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          ARCHIVE_INFO_NOT_FOUND = 1&lt;/P&gt;&lt;P&gt;          INVALID_PRINT_PARAMS   = 2&lt;/P&gt;&lt;P&gt;          INVALID_ARCHIVE_PARAMS = 3&lt;/P&gt;&lt;P&gt;          OTHERS                 = 4.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;      NEW-PAGE PRINT ON   PARAMETERS L_PARAMS NO DIALOG.&lt;/P&gt;&lt;P&gt;      PERFORM DISPLAY_REPORT.&lt;/P&gt;&lt;P&gt;      NEW-PAGE PRINT OFF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM DISPLAY_REPORT .&lt;/P&gt;&lt;P&gt;  WRITE: 'This is test for priniting...'.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " display_report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 20:38:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-buttons/m-p/2174400#M461660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T20:38:40Z</dc:date>
    </item>
  </channel>
</rss>

