<?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 selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875855#M675022</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the selection screen, i have  two radio button, p1, p2 and one  select option field. fd1.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if  the radio button p1 is selected, then i want the  fd1 value to be 100 in the selection screen and if the other radio button p2  is selected, then i want the value fd1 to be 200...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does anyone know how to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Sep 2007 20:07:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-28T20:07:09Z</dc:date>
    <item>
      <title>selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875855#M675022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the selection screen, i have  two radio button, p1, p2 and one  select option field. fd1.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if  the radio button p1 is selected, then i want the  fd1 value to be 100 in the selection screen and if the other radio button p2  is selected, then i want the value fd1 to be 200...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does anyone know how to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 20:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875855#M675022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T20:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875856#M675023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT zdummy_atg_2.

selection-screen begin of block b2 with frame title text-001.
parameters: radio radiobutton group rnd user-command test default 'X',
            radio2 radiobutton group rnd,
            test type bkpf-belnr.
selection-screen end of block b2.

AT SELECTION-SCREEN OUTPUT.
  if radio eq 'X'.
    test = '100'.
  else.
    test = '200'.
  endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 20:10:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875856#M675023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T20:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875857#M675024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF you want to use select-option then follow this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zdummy_atg_2.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;selection-screen begin of block b2 with frame title text-001.&lt;/P&gt;&lt;P&gt;parameters: radio radiobutton group rnd user-command test default 'X',&lt;/P&gt;&lt;P&gt;            radio2 radiobutton group rnd.&lt;/P&gt;&lt;P&gt;select-options : test for bkpf-belnr.&lt;/P&gt;&lt;P&gt;selection-screen end of block b2.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  if radio eq 'X'.&lt;/P&gt;&lt;P&gt;    test-low = '100'.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    test-low = '200'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Alvaro Tejada Galindo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 20:15:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875857#M675024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T20:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875858#M675025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did try but no luck.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually the two radio buttons are in one block&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the select option field is in another block&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i did write the code in at selection screen output, i am not seeing any value.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 20:32:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875858#M675025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T20:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875859#M675026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this way...It works -:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT zdummy_atg_2.

TABLES: bkpf.

SELECTION-SCREEN BEGIN OF BLOCK b2.
PARAMETERS: radio RADIOBUTTON GROUP rnd USER-COMMAND test DEFAULT 'X',
            radio2 RADIOBUTTON GROUP rnd.
SELECTION-SCREEN END OF BLOCK b2.

SELECTION-SCREEN BEGIN OF BLOCK b1.
SELECT-OPTIONS: test FOR bkpf-belnr.
SELECTION-SCREEN END OF BLOCK b1.

AT SELECTION-SCREEN OUTPUT.
  IF radio EQ 'X'.
    CLEAR test.
    REFRESH test.
    test-low = '100'.
    APPEND test.
  ELSE.
    CLEAR test.
    REFRESH test.
    test-low = '200'.
    APPEND test.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 20:37:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875859#M675026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T20:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875860#M675027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Alvaro. It works perfect now!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 20:48:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875860#M675027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T20:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875861#M675028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the perfect solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Sep 2007 06:18:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875861#M675028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-29T06:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875862#M675029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT zdummy_atg_2.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;selection-screen begin of block b2 with frame title text-001.&lt;/P&gt;&lt;P&gt;parameters: radio radiobutton group rnd user-command test default 'X',&lt;/P&gt;&lt;P&gt;                  radio2 radiobutton group rnd.&lt;/P&gt;&lt;P&gt; Select-option:  test for bkpf-belnr.&lt;/P&gt;&lt;P&gt;selection-screen end of block b2.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;DATA: v_temp type P.&lt;/P&gt;&lt;P&gt;if radio1 = 'X'.&lt;/P&gt;&lt;P&gt;v_temp = 100.&lt;/P&gt;&lt;P&gt;elseif radio1 = 'X'.&lt;/P&gt;&lt;P&gt;v_temp = 200.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;         IF SCREEN-NAME = 'test-low'.&lt;/P&gt;&lt;P&gt;          SCREEN-VALUE = v_temp.&lt;/P&gt;&lt;P&gt;          MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Sep 2007 06:40:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2875862#M675029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-29T06:40:57Z</dc:date>
    </item>
  </channel>
</rss>

