<?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: selection Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572976#M258697</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is your problem Sovled??&lt;/P&gt;&lt;P&gt;if yes, Kindly close the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Senthil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Sep 2006 05:11:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-26T05:11:01Z</dc:date>
    <item>
      <title>selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572971#M258692</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 want to Display Four Radio Buttons on the Selection Screen. But the Condition is that first it should show only two radio buttons and by selecting one of the it should show anohter two. I wrote it but it is not working . I wrote it in the At Selection-Output Event that if Screen-group = 'gr' the screen-invisible = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After Execution of the program it shows only two buttons.But after selecting it not showing the remaiaing two buttons.&lt;/P&gt;&lt;P&gt;  In which Event should I write the code ?&lt;/P&gt;&lt;P&gt;All these radio buttons are defined in the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 04:19:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572971#M258692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T04:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572972#M258693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;change GR to upper case and try &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if Screen-group = &amp;lt;b&amp;gt;'GR'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 04:23:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572972#M258693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T04:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572973#M258694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
Parameters: rd1 RADIOBUTTON group g1 default 'X' user-command ch ,
            rd2 RADIOBUTTON group g1  ,
            rd3 RADIOBUTTON group g1 modif id ID2 ,
            rd4 RADIOBUTTON group g1 modif id ID3 .



AT SELECTION-SCREEN.
check sy-ucomm = 'CH'.

AT SELECTION-SCREEN output.
IF rd1 = 'X'.

LOOP AT SCREEN.
IF screen-group1 = 'ID2' OR  screen-group1 = 'ID3' .
screen-ACTIVE = '0'.
ENDIF.
MODIFY SCREEN.
ENDLOOP.

ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 04:25:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572973#M258694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T04:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572974#M258695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Copy and paste this code and check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : r1 radiobutton group g1 USER-COMMAND OFF,&lt;/P&gt;&lt;P&gt;r2 radiobutton group G1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : p1(10) MODIF ID SC1,&lt;/P&gt;&lt;P&gt;P2(10) MODIF ID SC1,&lt;/P&gt;&lt;P&gt;P3(10) MODIF ID SC2,&lt;/P&gt;&lt;P&gt;P4(10) MODIF ID SC2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF R1 = 'X'.&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP1 = 'SC2'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;CONTINUE.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R2 = 'X'.&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP1 = 'SC1'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;CONTINUE.&lt;/P&gt;&lt;P&gt;ENDIF.&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;Rreward if useful.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Senthil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 04:27:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572974#M258695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T04:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572975#M258696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; try this code&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;parameters : p_rad1 radiobutton group g1 user-command ABCD,
               p_rad2 radiobutton group g1,
               p_rad3 radiobutton group g1 modif-id GR,
               p_rad4 radiobutton group g1 modif-id GR.
 data: v_chk type c.

 at selection-screen output.
  if v_chk = 'X'.
    loop at screen.
      if screen-group = 'GR'.
        screen-active = 1.
        modify screen.
      endif.
    endloop.
  else.

    loop at screen.
      if screen-group = 'GR'.
        screen-active = 0.
        modify screen.
      endif.
    endloop.
  endif.

  at selection-screen.

    if p_rad1 = 'X'.
      v_chk = ' '.
    else.
      v_chk = 'X'.
    endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 04:29:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572975#M258696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T04:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572976#M258697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is your problem Sovled??&lt;/P&gt;&lt;P&gt;if yes, Kindly close the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Senthil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 05:11:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1572976#M258697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T05:11:01Z</dc:date>
    </item>
  </channel>
</rss>

