<?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: Buttons in Selection Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600545#M867206</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;have you checked the GUI status of your screen ??  you can either erase or deactivate buttons that you do not need in the application toolbar or in the function keys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Apr 2008 12:24:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-02T12:24:49Z</dc:date>
    <item>
      <title>Buttons in Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600544#M867205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In my module pool program, if I click a button, am calling a selection screen using following statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL SELECTION-SCREEN 0105 STARTING AT 10 10 ENDING AT 95 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also, in TOP include, I have designed the selection screen as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECTION-SCREEN BEGIN OF SCREEN 0105.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECTION-SCREEN BEGIN OF BLOCK proj_def WITH FRAME TITLE text-100.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECT-OPTIONS pspid FOR proj-pspid.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECTION-SCREEN END OF BLOCK proj_def.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECTION-SCREEN END OF SCREEN 0105.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I execute, there are some default buttons are coming. But I want to include my own buttons and I have to write code for that. Is it possible? How can I do that?&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>Wed, 02 Apr 2008 11:02:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600544#M867205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T11:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Buttons in Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600545#M867206</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;have you checked the GUI status of your screen ??  you can either erase or deactivate buttons that you do not need in the application toolbar or in the function keys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 12:24:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600545#M867206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T12:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Buttons in Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600546#M867207</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; Goto SE41, &lt;/P&gt;&lt;P&gt; give the program name and the screen no as 0105 &lt;/P&gt;&lt;P&gt; goto the status in change mode and remove the unwanted icons&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 12:27:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600546#M867207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T12:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: Buttons in Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600547#M867208</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 this code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES: sscrfields,Proj.
TYPE-POOLS icon.

SELECTION-SCREEN BEGIN OF SCREEN 0105.
SELECTION-SCREEN BEGIN OF BLOCK proj_def WITH FRAME TITLE text-100.
SELECT-OPTIONS pspid FOR proj-pspid.
SELECTION-SCREEN: FUNCTION KEY 1.
SELECTION-SCREEN END OF BLOCK proj_def.
SELECTION-SCREEN END OF SCREEN 0105.

INITIALIZATION.
*
** Add displayed ICON  to application toolbar.
  MOVE icon_xls TO sscrfields-functxt_01.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandipan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 12:34:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600547#M867208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T12:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: Buttons in Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600548#M867209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandrasekar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no subobject called 'Screen'  to enter the screen number, in SE41. &lt;/P&gt;&lt;P&gt;Am using a standalone selection screen. How can I view and modify the status? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or is there any possibility to use select-options in normal screen?&lt;/P&gt;&lt;P&gt;or is there any possibility to include that selection screen in a normal screen?&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>Wed, 02 Apr 2008 12:37:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600548#M867209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T12:37:45Z</dc:date>
    </item>
    <item>
      <title>Re: Buttons in Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600549#M867210</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;Proceed as follows to achieve your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Click on the button&lt;/P&gt;&lt;P&gt;2. According to your logic you'll get a Selection Screen as POP-UP&lt;/P&gt;&lt;P&gt;3. Now select &lt;STRONG&gt;F1&lt;/STRONG&gt; on that input field&lt;/P&gt;&lt;P&gt;4. Go with &lt;STRONG&gt;Technical Information&lt;/STRONG&gt; Option&lt;/P&gt;&lt;P&gt;5. You'll get the necessary info and here you can notice GUI DATA&lt;/P&gt;&lt;P&gt;6. Here you can see the &lt;STRONG&gt;program name as RSSYSTDB&lt;/STRONG&gt; and &lt;STRONG&gt;Status as %_CSP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;7. Double click on this status.&lt;/P&gt;&lt;P&gt;8. It will lead you to that status. Click on &lt;STRONG&gt;Display &amp;lt;-&amp;gt; Change / CTRL + F1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;9. It will ask for the access key. get the access key from BASIS and then here you go to change according to your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps. Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Maddineni Bharath.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 13:28:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/buttons-in-selection-screen/m-p/3600549#M867210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T13:28:03Z</dc:date>
    </item>
  </channel>
</rss>

