<?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: Application tool bar ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-tool-bar/m-p/3376233#M810661</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to add a input box directly to the application tool bar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jan 2008 07:55:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-31T07:55:27Z</dc:date>
    <item>
      <title>Application tool bar ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-tool-bar/m-p/3376230#M810658</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 add an input box in application tool bar of my custom screen. Is it possible Provide me some sample code for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Navneeth K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 07:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-tool-bar/m-p/3376230#M810658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T07:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Application tool bar ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-tool-bar/m-p/3376231#M810659</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;Hope this helps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;codeTABLES:SSCRFIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Create the Additional Selection screen to input filename&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF SCREEN 10.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_FILE TYPE RLGRAP-FILENAME.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF SCREEN 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Create Application Toolbar Button on the Standard selection Screen&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN FUNCTION KEY 1. "Its fcode will be FC01&lt;/P&gt;&lt;P&gt;PARAMETERS : P_WERKS TYPE MARC-WERKS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;SSCRFIELDS-FUNCTXT_01 = 'Enter File'. "Assign the Text to the Button&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. "Check the Fcode&lt;/P&gt;&lt;P&gt;WHEN 'FC01'.&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN 10 STARTING AT 5 8 ENDING AT 85 20.&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;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4_FILENAME' "Local file browser&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;PROGRAM_NAME = SYST-CPROG&lt;/P&gt;&lt;P&gt;DYNPRO_NUMBER = SYST-DYNNR&lt;/P&gt;&lt;P&gt;FIELD_NAME = 'P_FILE'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;FILE_NAME = P_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;***Your list processing.[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward Points if found helpfull..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chandra Sekhar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 07:52:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-tool-bar/m-p/3376231#M810659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T07:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: Application tool bar ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-tool-bar/m-p/3376232#M810660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bothra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is how you can edit pushbuttons to application toolbar, hope this leads you to ur solution,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am giving you an idea, just try this, in the mean time I will prepare a code for you and 'll post. What I understood is you want to display 3 Buttons in the application tool bar for the Tab 1 and 2 for the Tab 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just declare an internal table with type sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:itab type standard table of sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you 'll be having one screen say 1001 in which two subscreens 0101 and 0102. For the screen 1001 create all the 5 (3+2) buttons.&lt;/P&gt;&lt;P&gt;Say you have a button called SAVE and function code is SAVE also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append save to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when user will select the tab1 check the ok_code and in the PBO section for the screen 1001 you have to set the PF status as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case suppose you don't want to display the SAVE button so what you have to do is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set pf-status 'PF_1001' excluding itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you have to just write a logic to handle this scenario with tab2 also. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if found helpfull,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chaitanya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 07:54:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-tool-bar/m-p/3376232#M810660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T07:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: Application tool bar ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-tool-bar/m-p/3376233#M810661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to add a input box directly to the application tool bar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 07:55:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-tool-bar/m-p/3376233#M810661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T07:55:27Z</dc:date>
    </item>
  </channel>
</rss>

