<?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: Adding Button with execute button. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349400#M1540422</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do using structure &lt;STRONG&gt;SSCRFIELDS&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can put 5 push buttons on application tool bar using this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pravin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Oct 2010 10:12:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-08T10:12:37Z</dc:date>
    <item>
      <title>Adding Button with execute button.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349396#M1540418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;It is possible to add a button with execute button. IF yes  how it is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 09:35:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349396#M1540418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-08T09:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Button with execute button.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349397#M1540419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do it from SE41(Menu painter).where you can set status what you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Ramya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 09:44:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349397#M1540419</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-08T09:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Button with execute button.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349398#M1540420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you looking for this ?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES: sscrfields.

DATA: text(20).

SELECTION-SCREEN FUNCTION KEY 1.

INITIALIZATION.
MOVE 'This is button' TO sscrfields-functxt_01.

AT SELECTION-SCREEN.
IF sy-ucomm = 'FC01'.
  text = 'button pressed'.
  sscrfields-ucomm = 'ONLI'.
ENDIF.

START-OF-SELECTION.
WRITE text.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 09:50:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349398#M1540420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-08T09:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Button with execute button.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349399#M1540421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI ,&lt;/P&gt;&lt;P&gt;My requirement is that I want one push button by the side of excecute button.When we press f8 on the report, i want to add one more button with the execute button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 10:01:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349399#M1540421</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-08T10:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Button with execute button.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349400#M1540422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do using structure &lt;STRONG&gt;SSCRFIELDS&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can put 5 push buttons on application tool bar using this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pravin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 10:12:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349400#M1540422</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-08T10:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Button with execute button.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349401#M1540423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI rahul,&lt;/P&gt;&lt;P&gt;Do these step -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. define &lt;/P&gt;&lt;P&gt;TABLES : sscrfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.write this before the selection screen&lt;/P&gt;&lt;P&gt;selection-screen function key 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. &lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  sscrfields-functxt_01 = 'Test'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  IF sscrfields-ucomm EQ 'FC01'. " this is the user command for this button&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhukar Shetty&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 10:39:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349401#M1540423</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-08T10:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Button with execute button.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349402#M1540424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Search in SDN before posting. You can find the below thread for the same purpose&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1601235"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 10:46:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349402#M1540424</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-08T10:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Button with execute button.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349403#M1540425</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;You want execute button inside report or on selection screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have to add in inside report then &lt;/P&gt;&lt;P&gt;you have to create pf-status using SE41.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copy the standard GUI status of program SAPLKKBL to your program, and modify as per your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arpit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 11:36:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-button-with-execute-button/m-p/7349403#M1540425</guid>
      <dc:creator>arpit_shah</dc:creator>
      <dc:date>2010-10-08T11:36:32Z</dc:date>
    </item>
  </channel>
</rss>

