<?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: radiobox problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214032#M766335</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;I think you have not grouoped the radio buttons.&lt;/P&gt;&lt;P&gt;Please check with that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more info on Radio Buttons please chk the link&lt;/P&gt;&lt;P&gt;[Checkboxes and Radio Buttons with Function Codes|http://help.sap.com/saphelp_nw04/helpdata/en/e6/83a0375b5dd003e10000009b38f8cf/content.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Dec 2007 05:53:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-24T05:53:52Z</dc:date>
    <item>
      <title>radiobox problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214027#M766330</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;i'm new abap developer. imeet aproblem with the radiobox, it is appear in the screen checked but i'm cleared it by the code and it is not unchecked. &lt;/P&gt;&lt;P&gt;(i.e. data: radio1(1) type c, &lt;/P&gt;&lt;P&gt;radio2(1) type c. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;at the process before screen output. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;module scrout out. &lt;/P&gt;&lt;P&gt;................. &lt;/P&gt;&lt;P&gt;endmodule. &lt;/P&gt;&lt;P&gt;module scrin input. &lt;/P&gt;&lt;P&gt;clear: radio2. &lt;/P&gt;&lt;P&gt;radio1 = 'x'. &lt;/P&gt;&lt;P&gt;endmodule. &lt;/P&gt;&lt;P&gt;/////////////// &lt;/P&gt;&lt;P&gt;the problem with me is why not radio1 only appear checed ?? &lt;/P&gt;&lt;P&gt;plz help me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx.&lt;/P&gt;&lt;P&gt;Suneela.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Dec 2007 10:58:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214027#M766330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-23T10:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: radiobox problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214028#M766331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you've to group those radio-buttons. those are not grouped. as per the properties one must be checked in a group. they r working as different entity. so, this is happening. group them from screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ANUPAM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Dec 2007 11:30:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214028#M766331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-23T11:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: radiobox problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214029#M766332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suneela,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I check your code.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Just change the radio1=  'x'  to 'X' .&lt;/STRONG&gt;  Then check your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(i.e. data: radio1(1) type c,&lt;/P&gt;&lt;P&gt;radio2(1) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;at the process before screen output.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module scrout out.&lt;/P&gt;&lt;P&gt;.................&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;module scrin input.&lt;/P&gt;&lt;P&gt;clear: radio2.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;radio1 = 'X'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;endmodule. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points, if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manoj Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 04:49:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214029#M766332</guid>
      <dc:creator>former_member402443</dc:creator>
      <dc:date>2007-12-24T04:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: radiobox problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214030#M766333</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;group the radio button and then try . its onle heppened only due to non grouping of radio button .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can try this code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: R1 RADIOBUTTON GROUP RAD1,&lt;/P&gt;&lt;P&gt;R2 RADIOBUTTON GROUP RAD1 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;R3 RADIOBUTTON GROUP RAD1,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            S1 RADIOBUTTON GROUP RAD2,&lt;/P&gt;&lt;P&gt;S2 RADIOBUTTON GROUP RAD2,&lt;/P&gt;&lt;P&gt;S3 RADIOBUTTON GROUP RAD2 DEFAULT 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 05:23:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214030#M766333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T05:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: radiobox problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214031#M766334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suneela,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are desingin radio button on screen in SE51 make sure that your radio buttons are grouped. There is a option in SE51 sceen select two radio buttons and group them. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;secondly, radio1 = 'x'.  dont use small letter in Single quotes this is very important note in SAP. When u use single quotes the sap will become case specific. so use 'X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sunil kairam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 05:40:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214031#M766334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T05:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: radiobox problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214032#M766335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;I think you have not grouoped the radio buttons.&lt;/P&gt;&lt;P&gt;Please check with that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more info on Radio Buttons please chk the link&lt;/P&gt;&lt;P&gt;[Checkboxes and Radio Buttons with Function Codes|http://help.sap.com/saphelp_nw04/helpdata/en/e6/83a0375b5dd003e10000009b38f8cf/content.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 05:53:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214032#M766335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T05:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: radiobox problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214033#M766336</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;You will need to group that radiobuttons so that SAP knows they are linked together. To do this using the grahical layout editor simply select all the radiobuttons and then right click on them, Now choose define group. Once you have done this you should not need any of the "clear" or "='X'" statements SAP should control it all for you. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if found helpful...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venkoji Babu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Dec 2007 07:52:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobox-problem/m-p/3214033#M766336</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-29T07:52:24Z</dc:date>
    </item>
  </channel>
</rss>

