<?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: delete default pushbutton?? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566483#M255932</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;Hope this wud help u!!&lt;/P&gt;&lt;P&gt;PARAMETERS: p_infile LIKE rlgrap-filename OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab TYPE TABLE OF sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND: 'ONLI' 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;Thanks &amp;amp; Regards.&lt;/P&gt;&lt;P&gt;ViKaS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Sep 2006 10:58:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-13T10:58:06Z</dc:date>
    <item>
      <title>delete default pushbutton??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566479#M255928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any method to delete the default pushbutton which get displayed everytime when we execute a report &lt;/P&gt;&lt;P&gt;i dont want 2 create a Pf-status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Seema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 07:30:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566479#M255928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T07:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: delete default pushbutton??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566480#M255929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Seema&lt;/P&gt;&lt;P&gt;     You can use the statement 'Set PF-Status XXX Excluding YYY'. where XXX is PF Status and YYY is the command.  Read  F1 Help on this statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Srikanth M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 07:41:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566480#M255929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T07:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: delete default pushbutton??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566481#M255930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey seema, try this&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_sel_screen_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA itab TYPE TABLE OF sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS test(10) TYPE c.&lt;/P&gt;&lt;P&gt;&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 07:46:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566481#M255930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T07:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: delete default pushbutton??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566482#M255931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi seema &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; how r u ?&lt;/P&gt;&lt;P&gt;   check this &lt;/P&gt;&lt;P&gt;  DATA itab TYPE TABLE OF sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS test(10) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;APPEND: 'ONLI' 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;&lt;/P&gt;&lt;P&gt;hope it will help u , &lt;/P&gt;&lt;P&gt; now u can call me,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: chetan vishnoi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 07:46:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566482#M255931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T07:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: delete default pushbutton??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566483#M255932</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;Hope this wud help u!!&lt;/P&gt;&lt;P&gt;PARAMETERS: p_infile LIKE rlgrap-filename OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab TYPE TABLE OF sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND: 'ONLI' 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;Thanks &amp;amp; Regards.&lt;/P&gt;&lt;P&gt;ViKaS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 10:58:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566483#M255932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T10:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: delete default pushbutton??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566484#M255933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    use custom PF-status to overide default pushbutton&lt;/P&gt;&lt;P&gt;    start-of-selection&lt;/P&gt;&lt;P&gt;     set pf-status 'TEST'.&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;Amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 11:07:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-default-pushbutton/m-p/1566484#M255933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T11:07:05Z</dc:date>
    </item>
  </channel>
</rss>

