<?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: Execute icon in screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870311#M673419</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is your requirement? If you need to add EXECUTE button to your custom screen, you need to add the same if pf-status and handle the respective event in User command module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Sep 2007 23:32:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-25T23:32:36Z</dc:date>
    <item>
      <title>Execute icon in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870310#M673418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am new to screen painter. I created a screen with some fields and table control. I dont see the execute icon on the screen. How to add it? I set the PF-STATUS such that the back, exit and cancel buttons can be seen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 22:41:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870310#M673418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T22:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Execute icon in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870311#M673419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is your requirement? If you need to add EXECUTE button to your custom screen, you need to add the same if pf-status and handle the respective event in User command module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 23:32:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870311#M673419</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T23:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Execute icon in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870312#M673420</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;do the following..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Double click on the status..It will take you to the GUI status&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Expand the application toolbar tree..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) In the ITEMS 1 - 7 section...In the first text box..GIve the function code EXECUTE or you can give your own function code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) Press enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5) Choose the static text radion button in the popup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6) Press Enter to continue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7) Give the function text "Execute"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; In the Icon name give ICON_EXECUTE_OBJECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9) Press enter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10) Choose an function key..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;11) Activate the GUI ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 23:36:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870312#M673420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T23:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Execute icon in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870313#M673421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok I have now been able to do that. But how do I code such that it displays a result. I tried this but it never works. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE user_command_0100 INPUT.
  IF sy-ucomm = 'BACK' OR
     sy-ucomm = 'EXIT' OR
     sy-ucomm = 'CALL'.
    LEAVE PROGRAM.
  ENDIF.
  IF sy-ucomm = 'EXECUTE'.
    WRITE 'Hello World'.
  ENDIF.
ENDMODULE.                    "user_command_0100 INPUT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 23:47:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870313#M673421</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T23:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Execute icon in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870314#M673422</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;If you want to display the results as a list..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then do the following..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  IF sy-ucomm = 'EXECUTE'.

    LEAVE TO LIST-PROCESSING.   " This goes to list..
    WRITE 'Hello World'.
  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 23:50:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870314#M673422</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T23:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Execute icon in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870315#M673423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just had to change the next screen to 0. Thank you for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 23:50:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-icon-in-screen/m-p/2870315#M673423</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T23:50:47Z</dc:date>
    </item>
  </channel>
</rss>

