<?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 Execute button in selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518018#M1424646</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created selection screen, default ie 1000, in that 2 radio button wil get displayed. Based on the selection of radio button further selection screen should get displayed.&lt;/P&gt;&lt;P&gt;The issues is I am not able to get execute button(F8) get displayed on the screen.&lt;/P&gt;&lt;P&gt;What mistake could I made?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any helpful suggestions?&lt;/P&gt;&lt;P&gt;Advance thanks...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Viral Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Jan 2010 08:27:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-15T08:27:27Z</dc:date>
    <item>
      <title>Execute button in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518018#M1424646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created selection screen, default ie 1000, in that 2 radio button wil get displayed. Based on the selection of radio button further selection screen should get displayed.&lt;/P&gt;&lt;P&gt;The issues is I am not able to get execute button(F8) get displayed on the screen.&lt;/P&gt;&lt;P&gt;What mistake could I made?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any helpful suggestions?&lt;/P&gt;&lt;P&gt;Advance thanks...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Viral Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 08:27:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518018#M1424646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-15T08:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Execute button in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518019#M1424647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you designed it in screen painter ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 08:38:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518019#M1424647</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-01-15T08:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Execute button in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518020#M1424648</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;here a short example how i use F8 on selection screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPE-POOLS: ICON.
*
SELECTION-SCREEN: BEGIN OF LINE.
PARAMETERS:       P_MATNR LIKE MARA-MATNR OBLIGATORY.
SELECTION-SCREEN: END   OF LINE.
*
SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN: PUSHBUTTON 30(30) PB01 USER-COMMAND ONLI
                  VISIBLE LENGTH 15.
SELECTION-SCREEN: END   OF LINE.
*
INITIALIZATION.
*
  CALL FUNCTION 'ICON_CREATE'
    EXPORTING
      NAME   = ICON_EXECUTE_OBJECT
      TEXT   = 'execute'
      INFO   = 'execute Report'
    IMPORTING
      RESULT = PB01
    EXCEPTIONS
      OTHERS = 0.
*
START-OF-SELECTION.
*
  WRITE: / P_MATNR.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 08:41:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518020#M1424648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-15T08:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Execute button in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518021#M1424649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI KESHAV,&lt;/P&gt;&lt;P&gt;THANKS FOR QUICK RESPONCE.&lt;/P&gt;&lt;P&gt;NO I HAVE NOT SET RADIO BUTTONS IN SCREEN PAINT.&lt;/P&gt;&lt;P&gt;I HAVE MANUALLY CODED...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;VIRAL PATEL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 08:42:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518021#M1424649</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-15T08:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Execute button in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518022#M1424650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check if u have done Pf ststus in Initialization event.. If PF status set in Initialization .. that would be set to selection screen&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
INITIALIZATION.
SET PF-STATUS 'MENU'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 08:43:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518022#M1424650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-15T08:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: Execute button in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518023#M1424651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Viral,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you checked the demo code: DEMO_CALL_SELECTION_SCREEN ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 08:46:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-button-in-selection-screen/m-p/6518023#M1424651</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-01-15T08:46:49Z</dc:date>
    </item>
  </channel>
</rss>

