<?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: Reg: GUI Status in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615532#M870969</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to do this suppose say there's back button in screen 105 but you dont want it for screen 101 then FOR SCREEN 104 GUI add this:&lt;/P&gt;&lt;P&gt;SET PF-STATUS EXCLUDING BACK.&lt;/P&gt;&lt;P&gt;this surely gonna help&lt;/P&gt;&lt;P&gt;reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Mar 2008 11:22:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-24T11:22:31Z</dc:date>
    <item>
      <title>Reg: GUI Status</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615528#M870965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Am calling a screen 104 from the main screen, using the following statement..&lt;/P&gt;&lt;P&gt;    CALL SCREEN 104 STARTING AT 10 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is including the GUI status of the main screen. But I dont want any GUI status for the screen 104. I need only Title bar. How can I exclude the previous GUI status? Is it like by creating the new GUI status( without any buttons ) or is there any other efficient way to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SAP Lover&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 05:26:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615528#M870965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T05:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: GUI Status</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615529#M870966</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;&lt;/P&gt;&lt;P&gt; before calling the screen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PF_STATUS 'stat'  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;double click on it  and application tools --&amp;gt; remove all fcodes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 06:14:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615529#M870966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T06:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: GUI Status</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615530#M870967</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;The GUI status of a selection screen is generated by the system. The SET PF-STATUS statement in the PBO event of the selection screen has no effect on the standard GUI status. If you want to use your own GUI status for a selection screen or deactivate functions in the standard GUI status in exceptional cases, you can use one of the following function modules in the PBO event of the selection screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RS_SET_SELSCREEN_STATUS&lt;/P&gt;&lt;P&gt;Sets another GUI status defined in the same ABAP program, or deactivates functions of the standard GUI status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RS_EXTERNAL_SELSCREEN_STATUS&lt;/P&gt;&lt;P&gt;Sets a GUI status defined in an external function group. You must use the SET PF-STATUS statement to set the status in a special function module in this function group. You must pass the name of the function module that sets the status as a parameter to the function module RS_EXTERNAL_SELSCREEN_STATUS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For further information, refer to the function module documentation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_sel_screen_status.&lt;/P&gt;&lt;P&gt;DATA itab TYPE TABLE OF sy-ucomm.&lt;/P&gt;&lt;P&gt;PARAMETERS test(10) TYPE c.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  APPEND: 'PRIN' TO itab,&lt;/P&gt;&lt;P&gt;          'SPOS' TO itab.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            p_status  = sy-pfkey&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            p_exclude = itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this example, the Print and Save as variant functions are deactivated. To find out the function codes of the standard GUI status, choose System ® Status and double-click the GUI status field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;preet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 10:34:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615530#M870967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T10:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: GUI Status</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615531#M870968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai  ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use SET PF-STATUS&lt;SPAN __default_attr="RED" __jive_macro_name="color"&gt; SPACE.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET TITLEBAR title .&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;Eshwar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 10:42:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615531#M870968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T10:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: GUI Status</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615532#M870969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to do this suppose say there's back button in screen 105 but you dont want it for screen 101 then FOR SCREEN 104 GUI add this:&lt;/P&gt;&lt;P&gt;SET PF-STATUS EXCLUDING BACK.&lt;/P&gt;&lt;P&gt;this surely gonna help&lt;/P&gt;&lt;P&gt;reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 11:22:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615532#M870969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T11:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: GUI Status</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615533#M870970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to do this suppose say there's back button in screen 105 but you dont want it for screen 104 then FOR SCREEN 104 GUI add this:&lt;/P&gt;&lt;P&gt;SET PF-STATUS EXCLUDING BACK.&lt;/P&gt;&lt;P&gt;this surely gonna help&lt;/P&gt;&lt;P&gt;plz reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 11:24:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-gui-status/m-p/3615533#M870970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T11:24:45Z</dc:date>
    </item>
  </channel>
</rss>

