<?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 screens in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/2711682#M628624</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;Try, Add USER-COMMAND to Radio-button.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS : FILENAME(30) TYPE C,
FUPLOAD RADIOBUTTON GROUP RAD1 DEFAULT 'X' USER-COMMAND UC,
FDLOAD RADIOBUTTON GROUP RAD1 .

AT USER-COMMAND.

AT SELECTION-SCREEN OUTPUT.
IF FUPLOAD = 'X'.
MOVE 'Upload' TO ACTION.
ELSEIF FDLOAD = 'X'.
MOVE 'Download' TO ACTION.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Aug 2007 06:12:21 GMT</pubDate>
    <dc:creator>seshatalpasai_madala</dc:creator>
    <dc:date>2007-08-24T06:12:21Z</dc:date>
    <item>
      <title>selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/2711680#M628622</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 I created report like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK FINPUT WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;PARAMETERS  : FILENAME(30) TYPE C,&lt;/P&gt;&lt;P&gt;              FUPLOAD RADIOBUTTON GROUP RAD1 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;              FDLOAD RADIOBUTTON GROUP RAD1 .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /33(30) ACTION USER-COMMAND&lt;/P&gt;&lt;P&gt;                 BTNACT VISIBLE LENGTH 8.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON 43(30) CANCEL USER-COMMAND&lt;/P&gt;&lt;P&gt;                 BTNCAN VISIBLE LENGTH 8.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK FINPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;ACTION = 'Download'.&lt;/P&gt;&lt;P&gt;CANCEL = 'Cancel'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD1.&lt;/P&gt;&lt;P&gt;IF FUPLOAD = 'X'.&lt;/P&gt;&lt;P&gt;     MOVE 'Upload' TO ACTION.&lt;/P&gt;&lt;P&gt;ELSEIF FDLOAD = 'X'.&lt;/P&gt;&lt;P&gt;     MOVE 'Download' TO ACTION.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MY question is based on radio button how to change the text on push button&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 06:06:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/2711680#M628622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T06:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/2711681#M628623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there is no problem in your code, u just need to press enter for the AT Selection-screen event to run, so after you have selected the radio button, u need to press ENTER, thats it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful, get back in case of query...&lt;/P&gt;&lt;P&gt;Cheers!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 06:12:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/2711681#M628623</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T06:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/2711682#M628624</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;Try, Add USER-COMMAND to Radio-button.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS : FILENAME(30) TYPE C,
FUPLOAD RADIOBUTTON GROUP RAD1 DEFAULT 'X' USER-COMMAND UC,
FDLOAD RADIOBUTTON GROUP RAD1 .

AT USER-COMMAND.

AT SELECTION-SCREEN OUTPUT.
IF FUPLOAD = 'X'.
MOVE 'Upload' TO ACTION.
ELSEIF FDLOAD = 'X'.
MOVE 'Download' TO ACTION.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 06:12:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/2711682#M628624</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-08-24T06:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/2711683#M628625</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;add user command to the radio button group.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK FINPUT WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;PARAMETERS : FILENAME(30) TYPE C,&lt;/P&gt;&lt;P&gt;FUPLOAD RADIOBUTTON GROUP RAD1 &amp;lt;b&amp;gt;user-command ad&amp;lt;/b&amp;gt; DEFAULT 'X',&lt;/P&gt;&lt;P&gt;FDLOAD RADIOBUTTON GROUP RAD1 .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /33(30) ACTION USER-COMMAND&lt;/P&gt;&lt;P&gt;BTNACT VISIBLE LENGTH 8.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON 43(30) CANCEL USER-COMMAND&lt;/P&gt;&lt;P&gt;BTNCAN VISIBLE LENGTH 8.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK FINPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;ACTION = 'Download'.&lt;/P&gt;&lt;P&gt;CANCEL = 'Cancel'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD1.&lt;/P&gt;&lt;P&gt; IF FUPLOAD = 'X'.&lt;/P&gt;&lt;P&gt;MOVE 'Upload' TO ACTION.&lt;/P&gt;&lt;P&gt;ELSEIF FDLOAD = 'X'.&lt;/P&gt;&lt;P&gt;MOVE 'Download' TO ACTION.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 06:13:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/2711683#M628625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T06:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/2711684#M628626</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;do like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK FINPUT WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;PARAMETERS : FILENAME(30) TYPE C,&lt;/P&gt;&lt;P&gt;FUPLOAD RADIOBUTTON GROUP RAD1  USER-COMMAND app DEFAULT 'X',&lt;/P&gt;&lt;P&gt;FDLOAD RADIOBUTTON GROUP RAD1 .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /33(30) ACTION USER-COMMAND&lt;/P&gt;&lt;P&gt;BTNACT VISIBLE LENGTH 8.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON 43(30) CANCEL USER-COMMAND&lt;/P&gt;&lt;P&gt;BTNCAN VISIBLE LENGTH 8.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK FINPUT.&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;nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 06:16:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/2711684#M628626</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-08-24T06:16:03Z</dc:date>
    </item>
  </channel>
</rss>

