<?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 in module pool program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851009#M1319682</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;I think the problem is that when you are selecting the radio button from the other group the PBO is called again and its getting refreshed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the code you have written in the perform is correct then write the perform statement written for F_AT&lt;/P&gt;&lt;P&gt;again in F_MOP. I have faced a similar problem before and got it solved. Hope it even works for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'F_AT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R1 = 'X'.&lt;/P&gt;&lt;P&gt;Perform screen_opt_grp USING 'G1' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSE. &lt;/P&gt;&lt;P&gt;Perform screen_opt_grp USING 'G1' '1' '0'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'F_MOP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R1 = 'X'.&lt;/P&gt;&lt;P&gt;Perform screen_opt_grp USING 'G1' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSE. &lt;/P&gt;&lt;P&gt;Perform screen_opt_grp USING 'G1' '1' '0'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R3 = 'X'.&lt;/P&gt;&lt;P&gt;Perform screen_opt_grp2 USING 'G2' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSEIF R5 = 'X'.&lt;/P&gt;&lt;P&gt;Perform Screen_opt_name1 USING 'field1' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSEIF R4 = 'X'.&lt;/P&gt;&lt;P&gt;Perform Screen_opt_name2 USING 'field2' '0' '1'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know in case of any problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Jun 2009 05:04:17 GMT</pubDate>
    <dc:creator>sridhar_meesala</dc:creator>
    <dc:date>2009-06-17T05:04:17Z</dc:date>
    <item>
      <title>Radio button in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851004#M1319677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 5 radio buttons out of which 2 are grouped as one group and the other 3 are grouped seperately.&lt;/P&gt;&lt;P&gt;When I select a radio button in 1st group then an i/o field becomes invisible. &lt;/P&gt;&lt;P&gt;Also when I select a radio button from the other group then another i/o field gets invisible. &lt;/P&gt;&lt;P&gt;Every thing is ok but when I am selecting the radio button from 2nd group the i/o field which got invisible when the radio button from 1st group is selected is again getting visible.&lt;/P&gt;&lt;P&gt;So please help me to salve my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pavan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 04:00:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851004#M1319677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T04:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Radio button in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851005#M1319678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pavan,&lt;/P&gt;&lt;P&gt;  Just Check below code,&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF p_r1 = 'X'.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'B'.&lt;/P&gt;&lt;P&gt;        screen-active = 0.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ELSEIF p_r2 = 'X'.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'A'.&lt;/P&gt;&lt;P&gt;        screen-active = 0.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just Check you have given Modify Screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 04:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851005#M1319678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T04:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Radio button in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851006#M1319679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my actual code. Could you suggest me the changes that I need to do in this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'F_AT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R1 = 'X'.&lt;/P&gt;&lt;P&gt;Perform screen_opt_grp USING 'G1' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSE.   &lt;/P&gt;&lt;P&gt;Perform screen_opt_grp USING 'G1' '1' '0'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'F_MOP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R3 = 'X'.&lt;/P&gt;&lt;P&gt;Perform screen_opt_grp2 USING 'G2' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSEIF R5 = 'X'.&lt;/P&gt;&lt;P&gt;Perform Screen_opt_name1 USING 'field1' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSEIF R4 = 'X'.&lt;/P&gt;&lt;P&gt;Perform Screen_opt_name2 USING 'field2' '0' '1'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pavan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 04:51:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851006#M1319679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T04:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Radio button in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851007#M1319680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just try the below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop  at screen.
if p_rad2 eq 'X' and screen-group1 = 'G2'.
screen-active = 0.
screen-invisible = 1.

endif.


modify screen.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best of luck!!&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 04:53:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851007#M1319680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T04:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Radio button in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851008#M1319681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pavan,&lt;/P&gt;&lt;P&gt;ASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'F_AT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R1 = 'X'.&lt;/P&gt;&lt;P&gt;Perform screen_opt_grp USING 'G1' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSE.----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------" /&gt;&lt;P&gt;&amp;gt; Try giving r2 = 'X' in the elseif condition&lt;/P&gt;&lt;P&gt;Perform screen_opt_grp USING 'G1' '1' '0'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'F_MOP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R3 = 'X'.&lt;/P&gt;&lt;P&gt;Perform screen_opt_grp2 USING 'G2' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSEIF R5 = 'X'.&lt;/P&gt;&lt;P&gt;Perform Screen_opt_name1 USING 'field1' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSEIF R4 = 'X'.&lt;/P&gt;&lt;P&gt;Perform Screen_opt_name2 USING 'field2' '0' '1'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 05:03:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851008#M1319681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T05:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Radio button in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851009#M1319682</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;I think the problem is that when you are selecting the radio button from the other group the PBO is called again and its getting refreshed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the code you have written in the perform is correct then write the perform statement written for F_AT&lt;/P&gt;&lt;P&gt;again in F_MOP. I have faced a similar problem before and got it solved. Hope it even works for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'F_AT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R1 = 'X'.&lt;/P&gt;&lt;P&gt;Perform screen_opt_grp USING 'G1' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSE. &lt;/P&gt;&lt;P&gt;Perform screen_opt_grp USING 'G1' '1' '0'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'F_MOP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R1 = 'X'.&lt;/P&gt;&lt;P&gt;Perform screen_opt_grp USING 'G1' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSE. &lt;/P&gt;&lt;P&gt;Perform screen_opt_grp USING 'G1' '1' '0'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R3 = 'X'.&lt;/P&gt;&lt;P&gt;Perform screen_opt_grp2 USING 'G2' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSEIF R5 = 'X'.&lt;/P&gt;&lt;P&gt;Perform Screen_opt_name1 USING 'field1' '0' '1'.&lt;/P&gt;&lt;P&gt;ELSEIF R4 = 'X'.&lt;/P&gt;&lt;P&gt;Perform Screen_opt_name2 USING 'field2' '0' '1'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know in case of any problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 05:04:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851009#M1319682</guid>
      <dc:creator>sridhar_meesala</dc:creator>
      <dc:date>2009-06-17T05:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Radio button in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851010#M1319683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sri. Its working &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 05:21:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool-program/m-p/5851010#M1319683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T05:21:44Z</dc:date>
    </item>
  </channel>
</rss>

