<?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: How to remove the Execute button(F8) from by Program.....? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-the-execute-button-f8-from-by-program/m-p/5875648#M1324024</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 can create a GUI status and append the function codes of those buttons that you want to remove to an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data: it_exclude TYPE TABLE OF sy-ucomm.
AT SELECTION-SCREEN OUTPUT.
  append 'ONLI' to it_exclude.


set PF-STATUS 'MY_GUI' EXCLUDING it_exclude.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Jul 2009 10:09:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-27T10:09:08Z</dc:date>
    <item>
      <title>How to remove the Execute button(F8) from by Program.....?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-the-execute-button-f8-from-by-program/m-p/5875646#M1324022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a report program which is executed by a hitting the &lt;STRONG&gt;push-butt&lt;/STRONG&gt; on which is provided on the Selection - Screen once the fields are filled in the selecton criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the report working fine . but the issue is with the &lt;STRONG&gt;execute button&lt;/STRONG&gt; which is also appearing beside the push-button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly provide  me the solution  how to &lt;STRONG&gt;remove the execute button&lt;/STRONG&gt; as the client does not want it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not understand on how to remove it as i have tried in many ways searching for the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rajesh Kumar R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2009 09:52:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-the-execute-button-f8-from-by-program/m-p/5875646#M1324022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-27T09:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the Execute button(F8) from by Program.....?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-the-execute-button-f8-from-by-program/m-p/5875647#M1324023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;try that:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
include rsdbc1xx.
....

AT SELECTION-SCREEN OUTPUT.
  append 'ONLI' to current_scr-excl.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;regards,darek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2009 10:02:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-the-execute-button-f8-from-by-program/m-p/5875647#M1324023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-27T10:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the Execute button(F8) from by Program.....?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-the-execute-button-f8-from-by-program/m-p/5875648#M1324024</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 can create a GUI status and append the function codes of those buttons that you want to remove to an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data: it_exclude TYPE TABLE OF sy-ucomm.
AT SELECTION-SCREEN OUTPUT.
  append 'ONLI' to it_exclude.


set PF-STATUS 'MY_GUI' EXCLUDING it_exclude.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2009 10:09:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-the-execute-button-f8-from-by-program/m-p/5875648#M1324024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-27T10:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the Execute button(F8) from by Program.....?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-the-execute-button-f8-from-by-program/m-p/5875649#M1324025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your fast reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution you gave  is helpfull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;respective points have been given to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rajesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2009 10:29:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-the-execute-button-f8-from-by-program/m-p/5875649#M1324025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-27T10:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the Execute button(F8) from by Program.....?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-the-execute-button-f8-from-by-program/m-p/5875650#M1324026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your fast reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution you gave  is helpfull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;respective points have been given to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rajesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2009 10:29:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-the-execute-button-f8-from-by-program/m-p/5875650#M1324026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-27T10:29:47Z</dc:date>
    </item>
  </channel>
</rss>

