<?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: BUTTON ON THE APPLICATION TOOL BAR in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909317#M684491</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 USING SET PF-STATUS 'SURESH1' -&amp;gt; DOUBLE CLICK ON SRESH1 -&amp;gt; IT NAVIGATES YOU TO MENU PAINTER. THER U CREATE WAT BUTTONS YOU WANT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF HELPFUL REWARD SOME POINTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WITH REGARDS,&lt;/P&gt;&lt;P&gt;SURESH ALURI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2007 10:25:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-11T10:25:05Z</dc:date>
    <item>
      <title>BUTTON ON THE APPLICATION TOOL BAR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909310#M684484</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;HOW TO ADD AN BUTTON ON THE APPLICATION TOOL BAR IN THE SELECTION SCREEN.&lt;/P&gt;&lt;P&gt;SELECTON SCREEN IS GOT THROUGH SELECT-OPTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS IN ADVANCE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 10:15:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909310#M684484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T10:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: BUTTON ON THE APPLICATION TOOL BAR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909311#M684485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECTION-SCREEN FUNCTION KEY n [ldb_additions]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect: &lt;/P&gt;&lt;P&gt;In the GUI status of the selection screen set by the system, the application toolbar contains five inactive pushbuttons, to which the function codes FC01 to FC05 are assigned. This statement activates the pushbutton of the function code FC0n, whereby a value between 1 and 5 must be entered for n. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To enable use of the pushbuttons, the statement TABLES must be used to declare an interface work area of the structure SSCRFIELDS from the ABAP Dictionary. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a text is assigned to the component functxt_0n of the interface area sscrfields before the selection screen is called, this text is displayed on the relevant pushbutton. Otherwise, the pushbutton does not contain any text. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the user chooses a pushbutton in the application toolbar, the runtime environment triggers the event AT SELECTION-SCREEN and the corresponding function code is transferred to the component comm of the interface work area sscrfields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The additions ldb_additions can only be used in the selection include of a logical database. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes: &lt;/P&gt;&lt;P&gt;To assign icons, Quickinfo, and appropriate text to the pushbuttons, a data object can be defined of the structured type SMP_DYNTXT from the ABAP dictionary. The ID of the icon, a quickinfo, and the corresponding text must be assigned to the components of this data object. The content of the whole structure must then be assigned to the component functxt_0n of the interface work area sscrfields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the event block after AT SELECTION-SCREEN is processed, the system returns to the display of the selection screen. To exit selection screen processing or to continue by executing the program, the user can only choose Execute or Cancel. Pushbuttons on selection screens can therefore normally be used for dynamic modifications to the selection screen rather than for program control. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the content of the component ucomm is set to a function code used in the GUI status during selection screen processing, then the selection screen processing is influenced accordingly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: &lt;/P&gt;&lt;P&gt;Activation of two pushbuttons with icons and quick info in the application toolbar (pushbutton toolbar) of the standard selection screen of an executable program. Selecting one of these buttons preassigns different values to the input fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_sel_screen_function_key. &lt;/P&gt;&lt;P&gt;TYPE-POOLS icon. &lt;/P&gt;&lt;P&gt;TABLES sscrfields. &lt;/P&gt;&lt;P&gt;DATA functxt TYPE smp_dyntxt. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_carrid TYPE s_carr_id, &lt;/P&gt;&lt;P&gt;            p_cityfr TYPE s_from_cit. &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: FUNCTION KEY 1, &lt;/P&gt;&lt;P&gt;                  FUNCTION KEY 2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION. &lt;/P&gt;&lt;P&gt;  functxt-icon_id   = icon_ws_plane. &lt;/P&gt;&lt;P&gt;  functxt-quickinfo = 'Preselected Carrier'. &lt;/P&gt;&lt;P&gt;  functxt-icon_text = 'LH'. &lt;/P&gt;&lt;P&gt;  sscrfields-functxt_01 = functxt. &lt;/P&gt;&lt;P&gt;  functxt-icon_text = 'UA'. &lt;/P&gt;&lt;P&gt;  sscrfields-functxt_02 = functxt. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN. &lt;/P&gt;&lt;P&gt;  CASE sscrfields-ucomm. &lt;/P&gt;&lt;P&gt;    WHEN 'FC01'. &lt;/P&gt;&lt;P&gt;      p_carrid = 'LH'. &lt;/P&gt;&lt;P&gt;      p_cityfr = 'Frankfurt'. &lt;/P&gt;&lt;P&gt;    WHEN 'FC02'. &lt;/P&gt;&lt;P&gt;      p_carrid = 'UA'. &lt;/P&gt;&lt;P&gt;      p_cityfr = 'Chicago'. &lt;/P&gt;&lt;P&gt;    WHEN OTHERS. &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;START-OF-SELECTION. &lt;/P&gt;&lt;P&gt;  ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 10:19:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909311#M684485</guid>
      <dc:creator>abdulazeez12</dc:creator>
      <dc:date>2007-10-11T10:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: BUTTON ON THE APPLICATION TOOL BAR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909312#M684486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: FUNCTION KEY 1,&lt;/P&gt;&lt;P&gt;FUNCTION KEY 2.&lt;/P&gt;&lt;P&gt;*for buttons on selection screen.&lt;/P&gt;&lt;P&gt;*And you can use it inthe following manner&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'FC01'.&lt;/P&gt;&lt;P&gt;&amp;lt;Code&amp;gt;&lt;/P&gt;&lt;P&gt;WHEN 'FC02'.&lt;/P&gt;&lt;P&gt;&amp;lt;Code&amp;gt;&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;&lt;/P&gt;&lt;P&gt;Firs add reference to screen fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: SSCRFIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can activate 1-4 function keys by&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN FUNCTION KEY 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then describe the function keys in LOAD-OF-PROGRAM or INITIALIZATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA smp_dyntxt TYPE smp_dyntxt.&lt;/P&gt;&lt;P&gt;CLEAR smp_dyntxt.&lt;/P&gt;&lt;P&gt;smp_dyntxt-text = text-t01.&lt;/P&gt;&lt;P&gt;smp_dyntxt-icon_id = '@GX@'.&lt;/P&gt;&lt;P&gt;smp_dyntxt-icon_text = text-i01.&lt;/P&gt;&lt;P&gt;smp_dyntxt-quickinfo = text-q01.&lt;/P&gt;&lt;P&gt;smp_dyntxt-path = 'T'.&lt;/P&gt;&lt;P&gt;sscrfields-functxt_01 = smp_dyntxt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An then you check usage in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  CASE SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN 'FC01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*********************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;  Adds buttons to application toolbar of selection screen.           *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;REPORT  zsscrappbut NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;TABLES: t030, skat, sscrfields.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK block1 WITH FRAME&lt;/P&gt;&lt;P&gt;                                     TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: p_ktopl FOR t030-ktopl,&lt;/P&gt;&lt;P&gt;                p_komok FOR t030-komok,&lt;/P&gt;&lt;P&gt;                p_ktosl FOR t030-ktosl.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Add button to application toolbar&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECTION-SCREEN FUNCTION KEY 1.  "Will have a function code of 'FC01'&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN FUNCTION KEY 2.  "Will have a function code of 'FC02'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                                                                .....&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK block1.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;*INITIALIZATION.&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Add displayed text string to buttons&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;MOVE 'Application button' to SSCRFIELDS-FUNCTXT_01.&lt;/P&gt;&lt;P&gt;MOVE 'Excecute report ????' to SSCRFIELDS-FUNCTXT_02.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                                                .....&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;*AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;if sscrfields-ucomm = 'FC01'.&lt;/P&gt;&lt;P&gt;  break-point.&lt;/P&gt;&lt;P&gt;elseif sscrfields-ucomm = 'FC02'.&lt;/P&gt;&lt;P&gt;  break-point.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="85" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 10:19:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909312#M684486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T10:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: BUTTON ON THE APPLICATION TOOL BAR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909313#M684487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi frd &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im sending the code use in SE38&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES SSCRFIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_CARRID TYPE S_CARR_ID,&lt;/P&gt;&lt;P&gt;            P_CITYFR TYPE S_FROM_CIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: FUNCTION KEY 1,&lt;/P&gt;&lt;P&gt;                  FUNCTION KEY 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  SSCRFIELDS-FUNCTXT_01 = 'LH'.&lt;/P&gt;&lt;P&gt;  SSCRFIELDS-FUNCTXT_02 = 'UA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  CASE SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;      WHEN'FC01'.&lt;/P&gt;&lt;P&gt;      P_CARRID = 'LH'.&lt;/P&gt;&lt;P&gt;      P_CITYFR = 'Frankfurt'.&lt;/P&gt;&lt;P&gt;    WHEN 'FC02'.&lt;/P&gt;&lt;P&gt;      P_CARRID = 'UA'.&lt;/P&gt;&lt;P&gt;      P_CITYFR = 'Chicago'.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  WRITE / 'START-OF-SELECTION'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward point if its useful ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 10:20:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909313#M684487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T10:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: BUTTON ON THE APPLICATION TOOL BAR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909314#M684488</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;with the use of menu painter you create the button on  the tool bar &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/enhance/mod_sapmenu.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/enhance/mod_sapmenu.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and after start-of-selection &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set pf-status 'status name'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if usefull&amp;lt;b&amp;gt;&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 10:21:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909314#M684488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T10:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: BUTTON ON THE APPLICATION TOOL BAR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909315#M684489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;       You can create a PF status and assign the PF status at initialization event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 10:21:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909315#M684489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T10:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: BUTTON ON THE APPLICATION TOOL BAR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909316#M684490</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;hi..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES sscrfields. &lt;/P&gt;&lt;P&gt;TYPE-POOLS icon. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: &lt;/P&gt;&lt;P&gt;BEGIN OF SCREEN 500 AS WINDOW TITLE title, &lt;/P&gt;&lt;P&gt;PUSHBUTTON 2(10) but1 USER-COMMAND cli1, &lt;/P&gt;&lt;P&gt;PUSHBUTTON 12(30) but2 USER-COMMAND cli2 &lt;/P&gt;&lt;P&gt;VISIBLE LENGTH 10, &lt;/P&gt;&lt;P&gt;END OF SCREEN 500. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN. &lt;/P&gt;&lt;P&gt;CASE sscrfields. &lt;/P&gt;&lt;P&gt;WHEN 'CLI1'. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;WHEN 'CLI2'. &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;START-OF-SELECTION. &lt;/P&gt;&lt;P&gt;title = 'Push button'. &lt;/P&gt;&lt;P&gt;but1 = 'Button 1'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ICON_CREATE' &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;name = icon_information &lt;/P&gt;&lt;P&gt;text = 'Button 2' &lt;/P&gt;&lt;P&gt;info = 'My Quickinfo' &lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;RESULT = but2 &lt;/P&gt;&lt;P&gt;EXCEPTIONS &lt;/P&gt;&lt;P&gt;OTHERS = 0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN '0500' STARTING AT 10 10. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/howdo_a.htm#PBUTTON" target="test_blank"&gt;http://www.planetsap.com/howdo_a.htm#PBUTTON&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 10:23:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909316#M684490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T10:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: BUTTON ON THE APPLICATION TOOL BAR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909317#M684491</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 USING SET PF-STATUS 'SURESH1' -&amp;gt; DOUBLE CLICK ON SRESH1 -&amp;gt; IT NAVIGATES YOU TO MENU PAINTER. THER U CREATE WAT BUTTONS YOU WANT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF HELPFUL REWARD SOME POINTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WITH REGARDS,&lt;/P&gt;&lt;P&gt;SURESH ALURI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 10:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-on-the-application-tool-bar/m-p/2909317#M684491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T10:25:05Z</dc:date>
    </item>
  </channel>
</rss>

