<?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: 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/4230935#M1010454</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: rad1 RADIOBUTTON GROUP vdo DEFAULT 'X',
            rad2 RADIOBUTTON GROUP vdo MODIF ID vdo.
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    CHECK screen-group1 EQ 'VDO'.
    screen-active = '0'.
    MODIFY screen.
  ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Valter OLiveira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Aug 2008 09:15:18 GMT</pubDate>
    <dc:creator>valter_oliveira</dc:creator>
    <dc:date>2008-08-08T09:15:18Z</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/4230932#M1010451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my zreport there are 2 radio buttons available, i want to make one radio button in no display mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is syntax for that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As it is mandatory to have atleast 2 radio button in a radio buton grup, i cannot delete it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just i want the second radio button in no-displaymode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hari priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 09:09:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/4230932#M1010451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-08T09:09:11Z</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/4230933#M1010452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF screen-name EQ 'rb1'&lt;/P&gt;&lt;P&gt;   screen-input = 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;Modify Screen.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HERE rb1 is your name of radiobutton.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rajesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: RAJESH KUMAR on Aug 8, 2008 2:41 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 09:11:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/4230933#M1010452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-08T09:11:33Z</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/4230934#M1010453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the point to inactive the one of the radio button, for this requirement u can go for checkbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 09:12:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/4230934#M1010453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-08T09:12: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/4230935#M1010454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: rad1 RADIOBUTTON GROUP vdo DEFAULT 'X',
            rad2 RADIOBUTTON GROUP vdo MODIF ID vdo.
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    CHECK screen-group1 EQ 'VDO'.
    screen-active = '0'.
    MODIFY screen.
  ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Valter OLiveira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 09:15:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/4230935#M1010454</guid>
      <dc:creator>valter_oliveira</dc:creator>
      <dc:date>2008-08-08T09:15:18Z</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/4230936#M1010455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii!&lt;/P&gt;&lt;P&gt;  Check this code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT z_sdn.

PARAMETERS:
  p_num RADIOBUTTON GROUP rad1 DEFAULT 'X' USER-COMMAND abc MODIF ID abc,
  p_char RADIOBUTTON GROUP rad1 MODIF ID xyz.


AT SELECTION-SCREEN OUTPUT.
  IF p_num EQ 'X'.
    LOOP AT SCREEN.
      IF screen-group1 EQ 'ABC'.
        screen-active = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
  ELSE.
    LOOP AT SCREEN.
      IF screen-group1 EQ 'XYZ'.
        screen-active = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Abhijeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 09:20:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/4230936#M1010455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-08T09:20:36Z</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/4230937#M1010456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abhijit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank      you very much for providing the logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hari priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 10:01:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-on-selection-screen/m-p/4230937#M1010456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-08T10:01:22Z</dc:date>
    </item>
  </channel>
</rss>

