<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button/m-p/3340427#M800773</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;Can some one help in this issue.. I have a requirement as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 2 radio buttons(r1,r2 and both belong to radio button group rg1) and 2 select-options (s1, s2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i can select either r1 or r2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now if i select r1, the program should not allow user to enter value in s2 and vice versa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me how to control this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bhaskar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Feb 2008 16:50:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-05T16:50:00Z</dc:date>
    <item>
      <title>RADIO BUTTON</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button/m-p/3340427#M800773</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;Can some one help in this issue.. I have a requirement as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 2 radio buttons(r1,r2 and both belong to radio button group rg1) and 2 select-options (s1, s2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i can select either r1 or r2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now if i select r1, the program should not allow user to enter value in s2 and vice versa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me how to control this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bhaskar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Feb 2008 16:50:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button/m-p/3340427#M800773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-05T16:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: RADIO BUTTON</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button/m-p/3340428#M800774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Challa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : r1 RADIOBUTTON GROUP 1 USER COMMAND uc01,&lt;/P&gt;&lt;P&gt;r2 RADIOBUTTON GROUP 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s1 FOR ... MODIF ID 001,&lt;/P&gt;&lt;P&gt;s2 FOR ... MODIF ID 002.&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;LOOP AT screen.&lt;/P&gt;&lt;P&gt;CASE 'X'.&lt;/P&gt;&lt;P&gt;WHEN r1.&lt;/P&gt;&lt;P&gt;IF screen-group1 EQ '002'.&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;MODIFY screen.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;WHEN r2.&lt;/P&gt;&lt;P&gt;IF screen-group1 EQ '001'.&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;MODIFY screen.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Feb 2008 16:58:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button/m-p/3340428#M800774</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-02-05T16:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: RADIO BUTTON</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button/m-p/3340429#M800775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, This is a bit of code which you want,just have a look.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if kunnr1 = 'X'.&lt;/P&gt;&lt;P&gt;    p_matnr = ' '.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-group1 = 'ONE'.&lt;/P&gt;&lt;P&gt;        screen-input = '1'.&lt;/P&gt;&lt;P&gt;        modify screen.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      if screen-group1 = 'TWO'.&lt;/P&gt;&lt;P&gt;        screen-input = '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;&lt;/P&gt;&lt;P&gt;  elseif matnr1 = 'X'.&lt;/P&gt;&lt;P&gt;   p_kunnr = ' '.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-group1 = 'TWO'.&lt;/P&gt;&lt;P&gt;        screen-input = '1'.&lt;/P&gt;&lt;P&gt;        modify screen.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      if screen-group1 = 'ONE'.&lt;/P&gt;&lt;P&gt;        screen-input = '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;&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points,if it is helpful.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;chandu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 02:37:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button/m-p/3340429#M800775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-06T02:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: RADIO BUTTON</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button/m-p/3340430#M800776</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;hope this will help..reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: r1 RADIOBUTTON GROUP rg DEFAULT 'X' USER-COMMAND chx,&lt;/P&gt;&lt;P&gt;                      r2 RADIOBUTTON GROUP rg .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: p_matnr TYPE eban-matnr MODIF ID g1,&lt;/P&gt;&lt;P&gt;           str_loc TYPE eban-lgort MODIF ID g2 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if r1 Eq 'X' .&lt;/P&gt;&lt;P&gt;  screen-group1 = 'G1'.&lt;/P&gt;&lt;P&gt;  screen-active = 1.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&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;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;    CASE screen-group1 .&lt;/P&gt;&lt;P&gt;      WHEN 'G1'.&lt;/P&gt;&lt;P&gt;        IF r1 EQ 'X'.&lt;/P&gt;&lt;P&gt;          screen-active = 1.&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;P&gt;          screen-active = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      WHEN 'G2'.&lt;/P&gt;&lt;P&gt;        IF r2 EQ 'X'.&lt;/P&gt;&lt;P&gt;          screen-active = 1.&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;P&gt;          screen-active = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      WHEN OTHERS.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 07:38:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button/m-p/3340430#M800776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-06T07:38:30Z</dc:date>
    </item>
  </channel>
</rss>

