<?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: module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766216#M906174</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhvi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer the Below Procedure of creating a Radio Button:&lt;/P&gt;&lt;P&gt;-  There are two steps involved:&lt;/P&gt;&lt;P&gt;1. Create the radio buttons as individual elements. Choose radio button from the object list and place it on the screen. You must assign a name to each radio button. In the ABAP program, create a field with the same name, type C, and length one. To make your programs easier to read and maintain, create a structure associated with each radio button group.&lt;/P&gt;&lt;P&gt;2.&amp;amp;#56441; You can also combine a collection of radio buttons into a radio button group. To do this, select the radio buttons in the layout editor and then choose Edit &amp;amp;#1048774; Group &amp;amp;#1048774; Radio button group &amp;amp;#1048774; Define.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- You can find out which radio button a user has chosen by querying the field contents in the ABAP program. If a radio button is not selected, the field value is initial.&lt;/P&gt;&lt;P&gt;- You can assign a function code and function type to a radio button group. When the user selects one of the radio buttons, the PAI event is triggered and the function code is placed in the command field (that is, the OK_CODE field).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure of the Radio Button Group in Main Program:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;********************************* 
*INCLUDE xxxTOP 
*********************************
DATA: 
BEGIN OF mode,
  display VALUE `X´,
  change,
  create,
END OF mode.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 May 2008 11:21:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-05T11:21:15Z</dc:date>
    <item>
      <title>module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766213#M906171</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;  Im creating a module pool prog in this im putting two radio buttons and a input/output field.&lt;/P&gt;&lt;P&gt;I want that at a time only one radio button should be active the other should be not. So in the screen painters attribute i have defined the two buttons in one group but yet when i execute it both the button are active.&lt;/P&gt;&lt;P&gt;kindly help me out. I even tried to enter the fctcode field attribute of the radio button but its a gray field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me out. reward points for all useful ans.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 11:10:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766213#M906171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T11:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766214#M906172</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;U may giving the same name in GROUPS  for both the radio buttons....&lt;/P&gt;&lt;P&gt;This is not the way to define the radio group...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select both the radio buttons at a time , &lt;/P&gt;&lt;P&gt;then at the cursor, u will get options to define the radio group for the buttons...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then bothe the radio buttons will come under single group...&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;lavanya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 11:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766214#M906172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T11:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766215#M906173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhvi&lt;/P&gt;&lt;P&gt;  How did you group the radio buttons?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  You &lt;STRONG&gt;have to select the radiobuttons&lt;/STRONG&gt; and  group them using the menu path(in layout of screen painter) &lt;/P&gt;&lt;P&gt;  edit-&amp;gt;grouping-&amp;gt;radiobuttongroup-&amp;gt;define&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 11:16:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766215#M906173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T11:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766216#M906174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhvi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer the Below Procedure of creating a Radio Button:&lt;/P&gt;&lt;P&gt;-  There are two steps involved:&lt;/P&gt;&lt;P&gt;1. Create the radio buttons as individual elements. Choose radio button from the object list and place it on the screen. You must assign a name to each radio button. In the ABAP program, create a field with the same name, type C, and length one. To make your programs easier to read and maintain, create a structure associated with each radio button group.&lt;/P&gt;&lt;P&gt;2.&amp;amp;#56441; You can also combine a collection of radio buttons into a radio button group. To do this, select the radio buttons in the layout editor and then choose Edit &amp;amp;#1048774; Group &amp;amp;#1048774; Radio button group &amp;amp;#1048774; Define.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- You can find out which radio button a user has chosen by querying the field contents in the ABAP program. If a radio button is not selected, the field value is initial.&lt;/P&gt;&lt;P&gt;- You can assign a function code and function type to a radio button group. When the user selects one of the radio buttons, the PAI event is triggered and the function code is placed in the command field (that is, the OK_CODE field).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure of the Radio Button Group in Main Program:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;********************************* 
*INCLUDE xxxTOP 
*********************************
DATA: 
BEGIN OF mode,
  display VALUE `X´,
  change,
  create,
END OF mode.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 11:21:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766216#M906174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T11:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766217#M906175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhavi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its a very strange to hear this, what you can do is, simple delete the radio buttons and create it again and dont forget to group it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not please revert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thats it&lt;/P&gt;&lt;P&gt;simple isn't it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 11:21:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766217#M906175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T11:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766218#M906176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sunil how can i add the function code to the radio button?&lt;/P&gt;&lt;P&gt;In the field attribute i have an attribute as fctcode but its a gray field. how should i add the function code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 11:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766218#M906176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T11:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766219#M906177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhvi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you have Created a Group for the Radio Buttons you can &lt;STRONG&gt;DOUBLE-CLICK&lt;/STRONG&gt; on any of the Radio Buttons and then the &lt;STRONG&gt;FctCode&lt;/STRONG&gt; will appear, and when you give a FctCode to any of the Radio Button, the same FctCode is assigned to all the Radio Buttons of that Group Automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 12:33:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/3766219#M906177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T12:33:16Z</dc:date>
    </item>
  </channel>
</rss>

