<?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 radio button on selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221023#M476906</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends my having problem with radio buttons. he is having 2 radio buttons on selection screen. when he clicks on button he wants to have parameter to be populated with one value and he clicks the other he wants other value to be populated and appear on selection screen. pls suggest.&lt;/P&gt;&lt;P&gt;              Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 May 2007 09:16:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-03T09:16:07Z</dc:date>
    <item>
      <title>radio button on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221023#M476906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends my having problem with radio buttons. he is having 2 radio buttons on selection screen. when he clicks on button he wants to have parameter to be populated with one value and he clicks the other he wants other value to be populated and appear on selection screen. pls suggest.&lt;/P&gt;&lt;P&gt;              Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 09:16:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221023#M476906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T09:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: radio button on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221024#M476907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  p_num     TYPE i MODIF ID abc,&lt;/P&gt;&lt;P&gt;  p_str(10) TYPE c MODIF ID xyz LOWER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;  rone type c RADIOBUTTON GROUP r1 DEFAULT 'X' USER-COMMAND ucom,&lt;/P&gt;&lt;P&gt;  rtwo type c RADIOBUTTON GROUP r1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /10(20) charly USER-COMMAND abcd.&lt;/P&gt;&lt;P&gt;TABLES sscrfields.&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  w_str(10) TYPE c,&lt;/P&gt;&lt;P&gt;  w_len     TYPE i.  .&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  IF rone EQ 'X'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'XYZ'.&lt;/P&gt;&lt;P&gt;        screen-active = 0.&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;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;        screen-active = 0.&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;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&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;  MOVE 'My text' TO charly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF p_num LT 0.&lt;/P&gt;&lt;P&gt;    MESSAGE e100(bctrain) WITH 'Invalid Number'.&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;  IF sscrfields-ucomm = 'ABCD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF rone EQ 'X'.&lt;/P&gt;&lt;P&gt;      p_num = p_num * p_num.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      MOVE strlen( p_str ) TO w_len.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WHILE w_len GE 0.&lt;/P&gt;&lt;P&gt;        WRITE p_str&lt;EM&gt;w_len(1) TO w_str&lt;/EM&gt;sy-index(1).&lt;/P&gt;&lt;P&gt;        SUBTRACT 1 FROM w_len.&lt;/P&gt;&lt;P&gt;      ENDWHILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WRITE w_str TO p_str.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ELSEIF sscrfields-ucomm = 'UCOM'.&lt;/P&gt;&lt;P&gt;    IF rone EQ 'X'.&lt;/P&gt;&lt;P&gt;      LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;        IF screen-group1 = 'XYZ'.&lt;/P&gt;&lt;P&gt;          screen-active = 0.&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;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;        IF screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;          screen-active = 0.&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;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF." at user-command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 09:20:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221024#M476907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T09:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: radio button on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221025#M476908</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;Refer the sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;gt;&amp;gt; Intial/Common selection screen&lt;/P&gt;&lt;P&gt;selection-screen begin of block block1 with frame title text-002.&lt;/P&gt;&lt;P&gt;selection-screen skip 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;gt;&amp;gt; Selection for Material Master&lt;/P&gt;&lt;P&gt;select-options: s_matnr for mara-matnr,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;               s_werks FOR marc-werks," By Sreeram DU1K933728&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                s_mtart for mara-mtart,&lt;/P&gt;&lt;P&gt;                s_matkl for mara-matkl,&lt;/P&gt;&lt;P&gt;                s_ersda for mara-ersda.&lt;/P&gt;&lt;P&gt;selection-screen end of block block1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;gt;&amp;gt; Selection for Released Batches&lt;/P&gt;&lt;P&gt;selection-screen begin of block block_rb with frame title text-034.&lt;/P&gt;&lt;P&gt;selection-screen skip 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: so_werks for marc-werks,&lt;/P&gt;&lt;P&gt;                so_matnr for mara-matnr,&lt;/P&gt;&lt;P&gt;                so_charg for mch1-charg,&lt;/P&gt;&lt;P&gt;                so_mtart for mara-mtart,&lt;/P&gt;&lt;P&gt;                so_verab for mch1-verab.&lt;/P&gt;&lt;P&gt;selection-screen end of block block_rb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen skip 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;gt;&amp;gt; Selection for Online Display &amp;amp; Download&lt;/P&gt;&lt;P&gt;selection-screen begin of block block2 with frame title text-012.&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen position 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****&lt;STRONG&gt;Changes by Sreeram DU1K933700&lt;/STRONG&gt;*************&lt;/P&gt;&lt;P&gt;*PARAMETERS: p_rd_upl RADIOBUTTON GROUP grp1.&lt;/P&gt;&lt;P&gt;parameters: p_rd_upl radiobutton group grp1 user-command abc.&lt;/P&gt;&lt;P&gt;****&lt;STRONG&gt;end of changes by Sreeram&lt;/STRONG&gt;******************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Radio Button for Download&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen comment 3(30) text-003 for field p_rd_upl.&lt;/P&gt;&lt;P&gt;selection-screen position 75.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_rd_rep radiobutton group grp1 default 'X' .&lt;/P&gt;&lt;P&gt;"Radio button of Online Display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen comment 77(20) text-004 for field p_rd_rep.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;gt;&amp;gt; Selection for check box &amp;amp; radi buttion line wise........&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen position 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_cb1 as checkbox modif id chk.&lt;/P&gt;&lt;P&gt;"default 'X'.        "Check box for Material Master checkbox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen comment 3(20) text-005 for field p_cb1.&lt;/P&gt;&lt;P&gt;selection-screen position 77.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_rd1 radiobutton group grp2 modif id rdb.&lt;/P&gt;&lt;P&gt;"Radio Button for Material Master Report display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen comment 79(20) text-006 for field p_rd1.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen position 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_cb2 as checkbox modif id chk.&lt;/P&gt;&lt;P&gt;"default 'X'.          "Check box for Material Types checkbox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen comment 3(20) text-007 for field p_cb2.&lt;/P&gt;&lt;P&gt;selection-screen position 77.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_rd2 radiobutton group grp2 modif id rdb.&lt;/P&gt;&lt;P&gt;"Radio Button for Material Types Report display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen comment 79(20) text-008 for field p_rd2.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen position 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_cb3 as checkbox modif id chk.&lt;/P&gt;&lt;P&gt;"default 'X'.            "Check box for Material Groups checkbox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen comment 3(20) text-009 for field p_cb3.&lt;/P&gt;&lt;P&gt;selection-screen position 77.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_rd3 radiobutton group grp2 modif id rdb.&lt;/P&gt;&lt;P&gt;"Radio Button for Material Groups Report display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen comment 79(20) text-010 for field p_rd3.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen position 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_cb4 as checkbox modif id chk.&lt;/P&gt;&lt;P&gt;"default 'X'.              "Check box for Released Bacthes checkbox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen comment 3(20) text-013 for field p_cb4.&lt;/P&gt;&lt;P&gt;selection-screen position 77.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_rd4 radiobutton group grp2 modif id rdb.&lt;/P&gt;&lt;P&gt;"Radio Button for Material Groups Report display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen comment 79(20) text-014 for field p_rd4.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;gt;&amp;gt; File Location Parameter&lt;/P&gt;&lt;P&gt;parameters: p_loc type rlgrap-filename default '/usr/sap/tmp/'&lt;/P&gt;&lt;P&gt;obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;gt;&amp;gt; Selection for email input&lt;/P&gt;&lt;P&gt;select-options: s_email for soli-line no intervals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen end of block block2.&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;Sreeram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 09:22:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221025#M476908</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-05-03T09:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: radio button on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221026#M476909</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;PRE&gt;&lt;CODE&gt;REPORT demo_at_selection_on_radio .

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
PARAMETERS: r1 RADIOBUTTON GROUP rad1 DEFAULT 'X',
            r2 RADIOBUTTON GROUP rad1,
            r3 RADIOBUTTON GROUP rad1.
SELECTION-SCREEN END OF BLOCK b1.

SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME.
PARAMETERS: r4 RADIOBUTTON GROUP rad2 DEFAULT 'X',
            r5 RADIOBUTTON GROUP rad2,
            r6 RADIOBUTTON GROUP rad2.
SELECTION-SCREEN END OF BLOCK b2.

AT SELECTION-SCREEN ON RADIOBUTTON GROUP rad1.

  IF r1 = 'X'.
"process ur logic here u may use loop at screen.
  ENDIF.

AT SELECTION-SCREEN ON RADIOBUTTON GROUP rad2.

  IF r2 = 'X'.
"process ur logic here u may use loop at screen.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 09:23:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221026#M476909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T09:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: radio button on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221027#M476910</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 using event AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;   IF RAD1 = 'X'.&lt;/P&gt;&lt;P&gt;      PAR1 = 'abc'.&lt;/P&gt;&lt;P&gt;   ELSE IF RAD2 = 'X'.&lt;/P&gt;&lt;P&gt;      PAR2 = 'xyz'.&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;Reward if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hemant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 09:23:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221027#M476910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T09:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: radio button on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221028#M476911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI.. Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;paste this code..solves ur problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;REPORT  ZYH642_TEST_4.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters:&lt;/P&gt;&lt;P&gt; p_r1 radiobutton group g1 user-command RAM,&lt;/P&gt;&lt;P&gt; p_r2 radiobutton group g1 ,&lt;/P&gt;&lt;P&gt; P_F1(10) TYPE C MODIF ID SCR,&lt;/P&gt;&lt;P&gt; P_F2(10) TYPE C MODIF ID SCR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;at selection-screen output.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_r1 = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;loop at screen.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; if screen-name = 'P_F1'.&lt;/P&gt;&lt;P&gt;   P_F1 = 'ABC'.&lt;/P&gt;&lt;P&gt;   P_F2 = SPACE.&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt; MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ENDLOOP.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &amp;lt;b&amp;gt;loop at screen.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;   if screen-name = 'P_F2'.&lt;/P&gt;&lt;P&gt;     P_F2 = 'XYZ'.&lt;/P&gt;&lt;P&gt;     CLEAR P_F1.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt;   MODIFY SCREEN.&lt;/P&gt;&lt;P&gt; &amp;lt;b&amp;gt;ENDLOOP.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 09:47:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/2221028#M476911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T09:47:35Z</dc:date>
    </item>
  </channel>
</rss>

