<?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 Hide execute button in selection-screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-execute-button-in-selection-screen/m-p/1966669#M396950</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to hide the execute button (F8) in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My selection screen number is 9000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i didnt use the selection screen number and use set pf-status its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i use selection-screen number 9000 its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to solve this.&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>Mon, 26 Feb 2007 14:45:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-26T14:45:42Z</dc:date>
    <item>
      <title>Hide execute button in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-execute-button-in-selection-screen/m-p/1966669#M396950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to hide the execute button (F8) in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My selection screen number is 9000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i didnt use the selection screen number and use set pf-status its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i use selection-screen number 9000 its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to solve this.&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>Mon, 26 Feb 2007 14:45:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-execute-button-in-selection-screen/m-p/1966669#M396950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T14:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Hide execute button in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-execute-button-in-selection-screen/m-p/1966670#M396951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI ,&lt;/P&gt;&lt;P&gt; Refer the sample program:&lt;/P&gt;&lt;P&gt;demo_sel_screen_status&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 14:47:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-execute-button-in-selection-screen/m-p/1966670#M396951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T14:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Hide execute button in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-execute-button-in-selection-screen/m-p/1966671#M396952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you calling set pf-status on the screen 9000 module?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 14:48:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-execute-button-in-selection-screen/m-p/1966671#M396952</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-02-26T14:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Hide execute button in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-execute-button-in-selection-screen/m-p/1966672#M396953</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;Try like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Define a status gui and call it in initialization:

INITIALIZATION.
  SET PF-STATUS 'ZSTS' IMMEDIATELY.
  WRITE sy-pfkey.


You need to declare sscrfields table in tables statment to manage user commands. Example:

AT SELECTION-SCREEN.
  CASE sscrfields-ucomm.
    WHEN 'LEAVE' OR 'CANCEL' OR 'BACK'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 14:50:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-execute-button-in-selection-screen/m-p/1966672#M396953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T14:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Hide execute button in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-execute-button-in-selection-screen/m-p/1966673#M396954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;9000 is not module its selection screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 14:50:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-execute-button-in-selection-screen/m-p/1966673#M396954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T14:50:30Z</dc:date>
    </item>
  </channel>
</rss>

