<?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: selection screen window in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167475#M1516745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer the below code snippet. Its pretty clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN OUTPUT.
  DATA itab TYPE TABLE OF sy-ucomm.
  gv_repid = sy-repid.

  IF sy-dynnr = 9900.
    CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
         EXPORTING
              p_status  = 'STATUS'
              p_program = gv_repid
         TABLES
              p_exclude = itab.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here ITAB contains the option you want to exclude.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Abhii&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Aug 2010 12:05:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-08-16T12:05:43Z</dc:date>
    <item>
      <title>selection screen window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167472#M1516742</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;I have report program in which i am calling a selection screen as window. By default four buttons are coming namely &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Execute &lt;/P&gt;&lt;P&gt;2. Check Input&lt;/P&gt;&lt;P&gt;3. Save as Variant&lt;/P&gt;&lt;P&gt;4.Cancel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to keep the 1st and 4th button and i want to remove the other two....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u plzz suggest me a method.. of deactivating them..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 11:22:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167472#M1516742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T11:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167473#M1516743</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 copy GUI interface of you report program in ZSTATUS &amp;amp; then use this ZSTATUS in your program &amp;amp; you can delete the buttons from SE41 transaction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 11:26:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167473#M1516743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T11:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167474#M1516744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use standard FM &lt;STRONG&gt;RS_SET_SELSCREEN_STATUS&lt;/STRONG&gt; to change sel.screen status or deactivate some functions. Refer [this|http://help.sap.com/saphelp_46c/helpdata/en/e7/0eb237e29bc368e10000009b38f8cf/frameset.htm].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 11:45:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167474#M1516744</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-08-16T11:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167475#M1516745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer the below code snippet. Its pretty clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN OUTPUT.
  DATA itab TYPE TABLE OF sy-ucomm.
  gv_repid = sy-repid.

  IF sy-dynnr = 9900.
    CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
         EXPORTING
              p_status  = 'STATUS'
              p_program = gv_repid
         TABLES
              p_exclude = itab.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here ITAB contains the option you want to exclude.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Abhii&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 12:05:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167475#M1516745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T12:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167476#M1516746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone provide me with the function codes of : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Check Input&lt;/P&gt;&lt;P&gt;3. Save as Variant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 13:19:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167476#M1516746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T13:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167477#M1516747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the selection screen just enter '/h' in the command field &amp;amp; click on the button for which you want to know the function code, as soon as it goes into debug mode, just check the value of the system field 'SY-UCOMM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This solves your question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Abhii&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Aug 2010 13:22:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-window/m-p/7167477#M1516747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-16T13:22:29Z</dc:date>
    </item>
  </channel>
</rss>

