<?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 problem on selection screen. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-selection-screen/m-p/1211273#M133543</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;There are 3 radio buttons on selection screen for diff purpose. according to selection on radio button and after pressing exuc it display some data or do some perform rutine . how'll i do that. plz help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goutam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Apr 2006 06:20:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-17T06:20:34Z</dc:date>
    <item>
      <title>problem on selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-selection-screen/m-p/1211273#M133543</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;There are 3 radio buttons on selection screen for diff purpose. according to selection on radio button and after pressing exuc it display some data or do some perform rutine . how'll i do that. plz help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goutam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 06:20:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-selection-screen/m-p/1211273#M133543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T06:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: problem on selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-selection-screen/m-p/1211274#M133544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Goutam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT EVENT_DEMO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.&lt;/P&gt;&lt;P&gt;  PARAMETERS: R1 RADIOBUTTON GROUP RAD1 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;              R2 RADIOBUTTON GROUP RAD1,&lt;/P&gt;&lt;P&gt;              R3 RADIOBUTTON GROUP RAD1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R1 = 'x'.&lt;/P&gt;&lt;P&gt; PERFORM P1.&lt;/P&gt;&lt;P&gt;ELSEIF R2 = 'x'.&lt;/P&gt;&lt;P&gt; PERFORM P2.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt; PERFORM P3.&lt;/P&gt;&lt;P&gt;ENDIF.&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;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 06:26:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-selection-screen/m-p/1211274#M133544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T06:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: problem on selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-selection-screen/m-p/1211275#M133545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gautam&lt;/P&gt;&lt;P&gt;You can do this using CASE...ENDCASE statementi in AT SELECTION_SCREEN event&lt;/P&gt;&lt;P&gt;do the coding as&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;CASE "GNAME".&lt;/P&gt;&lt;P&gt;WHEN 'R1'.&lt;/P&gt;&lt;P&gt;do processing&lt;/P&gt;&lt;P&gt;WHEN 'R2'.&lt;/P&gt;&lt;P&gt;do processing&lt;/P&gt;&lt;P&gt;WHEN 'R3'.&lt;/P&gt;&lt;P&gt;do processing&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;I hope this is what you want.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 06:27:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-selection-screen/m-p/1211275#M133545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T06:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: problem on selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-selection-screen/m-p/1211276#M133546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;go through this code and do the changes as per your requirements.&lt;/P&gt;&lt;P&gt;DATA: radio1(1) TYPE c, radio2(1) TYPE c, radio3(1) TYPE c,&lt;/P&gt;&lt;P&gt;      field1(10) TYPE c, field2(10) TYPE c, field3(10) TYPE c,&lt;/P&gt;&lt;P&gt;      box TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ok_code TYPE sy-ucomm,&lt;/P&gt;&lt;P&gt;      save_ok TYPE sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0100 INPUT.&lt;/P&gt;&lt;P&gt;  save_ok = ok_code.&lt;/P&gt;&lt;P&gt;  CLEAR ok_code.&lt;/P&gt;&lt;P&gt;  CASE save_ok.&lt;/P&gt;&lt;P&gt;    WHEN 'RADIO'.&lt;/P&gt;&lt;P&gt;      IF radio1 = 'X'.&lt;/P&gt;&lt;P&gt;        field1 = 'Selected!'.&lt;/P&gt;&lt;P&gt;        CLEAR: field2, field3.&lt;/P&gt;&lt;P&gt;      ELSEIF radio2 = 'X'.&lt;/P&gt;&lt;P&gt;        field2 = 'Selected!'.&lt;/P&gt;&lt;P&gt;        CLEAR: field1, field3.&lt;/P&gt;&lt;P&gt;      ELSEIF radio3 = 'X'.&lt;/P&gt;&lt;P&gt;        field3 = 'Selected!'.&lt;/P&gt;&lt;P&gt;        CLEAR: field1, field2.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    WHEN 'CANCEL'.&lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 06:28:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-selection-screen/m-p/1211276#M133546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T06:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: problem on selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-selection-screen/m-p/1211277#M133547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;just declare the Radio buttons,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: R1 RADIOBUTTON GROUP RAD1,
            R2 RADIOBUTTON GROUP RAD1,
            R3 RADIOBUTTON GROUP RAD1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the selection screen, if you select any radiobutton, then that will become 'X'&lt;/P&gt;&lt;P&gt;write your logic accoding to your requirment like.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF R1 = 'X'.
  write your logic
ELSEIF R2 = 'X'.
  write your logic
ELSEIF R3 = 'X'.
 write your logic
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 06:32:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-selection-screen/m-p/1211277#M133547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T06:32:20Z</dc:date>
    </item>
  </channel>
</rss>

