<?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: radiobutton and checkboxes in modulepool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209245#M1205070</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swapna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Group all 3 buttons together and set one of the button as default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then to tick checkbox, write code in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you want more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Feb 2009 06:51:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-27T06:51:05Z</dc:date>
    <item>
      <title>radiobutton and checkboxes in modulepool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209241#M1205066</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;&lt;/P&gt;&lt;P&gt;I have drag and dropped 3 radiobuttons and 3 checkboxes in the layout. &lt;/P&gt;&lt;P&gt;My requirement is if i selected the first radio button first checkbox should be checked likewise the rest.&lt;/P&gt;&lt;P&gt;When i tried to execute it is displaying all the radiobuttons checked..im unable to select any radiobutton..how to set the properties in layout so that only one radiobutton can be selected at a time..pls help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;swapna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2009 05:56:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209241#M1205066</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-27T05:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: radiobutton and checkboxes in modulepool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209242#M1205067</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;IN the layout of that screen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select the three radio button and go to menu options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit -&amp;gt; Grouping -&amp;gt; radio buttons -&amp;gt; define.&lt;/P&gt;&lt;P&gt;Now these radio buttons will work properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2009 05:59:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209242#M1205067</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-27T05:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: radiobutton and checkboxes in modulepool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209243#M1205068</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;&lt;STRONG&gt;select all the radiobuttons --&amp;gt; right click --&amp;gt; define --&amp;gt; group.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take the function group of all radiobuttons as &lt;STRONG&gt;CS&lt;/STRONG&gt; and function type as &lt;STRONG&gt;S&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And use code in PAI:-&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
module user_command_8001.
  if rad1 = 'X'
    chk1 = 'X'.
    chk2 = ' '.
    chk3 = ' '.
  elseif rad2 = 'X'
    chk1 = ' '.
    chk2 = 'X'.
    chk3 = ' '.
  elseif rad3 = 'X'
    chk1 = ' '.
    chk2 = ' '.
    chk3 = 'X'.
  endif.
endmodule.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Tarun Gambhir on Feb 27, 2009 11:33 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2009 06:01:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209243#M1205068</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-02-27T06:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: radiobutton and checkboxes in modulepool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209244#M1205069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swapna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select all your Radio buttons &amp;amp; right click and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign them to a grouping-&amp;gt; radiobuttons -&amp;gt; define.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2009 06:04:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209244#M1205069</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-27T06:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: radiobutton and checkboxes in modulepool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209245#M1205070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swapna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Group all 3 buttons together and set one of the button as default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then to tick checkbox, write code in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you want more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2009 06:51:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209245#M1205070</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-27T06:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: radiobutton and checkboxes in modulepool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209246#M1205071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Swapna,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If selected the first radio button first checkbox should be checked likewise the rest.&lt;/P&gt;&lt;P&gt;Following code may be useful for the same:&lt;/P&gt;&lt;P&gt;  if Rad1 ='X'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF( screen-name = 'chk-box-2'     "name ur giving in screen&lt;/P&gt;&lt;P&gt;      or screen-name = 'chk-box-3' )&lt;/P&gt;&lt;P&gt;        screen-active = '0'.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;        screen-output = 0.&lt;/P&gt;&lt;P&gt;        screen-invisible = 1.     " It will make chk box invisible &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;Thanks&lt;/P&gt;&lt;P&gt;Shrila&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2009 07:10:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209246#M1205071</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-27T07:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: radiobutton and checkboxes in modulepool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209247#M1205072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The radiobutton must be grouped, in each group one and only one radiobutton is on, call screen painter, select every radiobutton and right-click, there is an option to group the radiobuttons. ([Graphical Layout Editor|http://help.sap.com/saphelp_nw70/helpdata/EN/d1/801b77454211d189710000e8322d00/frameset.htm])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2009 07:43:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-and-checkboxes-in-modulepool/m-p/5209247#M1205072</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-02-27T07:43:46Z</dc:date>
    </item>
  </channel>
</rss>

