<?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: help with selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852899#M360970</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi deepthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try doing this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt;IF p_rad1 = 'X'.(first radiobutton is selected)&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'GR2'&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;screen-active = '1'.&lt;/P&gt;&lt;P&gt;screen-invisible = '0'.&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;ELSE.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'GR1'. (second is selected)&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;screen-active = '1'.&lt;/P&gt;&lt;P&gt;screen-invisible = '0'.&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;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;do reward if it helps,&lt;/P&gt;&lt;P&gt;priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jan 2007 18:19:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-29T18:19:51Z</dc:date>
    <item>
      <title>help with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852897#M360968</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 a selection screen in which i have to select one of the 3 things using radio button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;based on each selection i.e radio button , i want to see a different selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know as how to proceed with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;deepthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 18:09:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852897#M360968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T18:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: help with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852898#M360969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.


selection-screen begin of block b1 with frame.
parameters: p_g1 radiobutton group gp1 default 'X' user-command chk,
            p_g2 radiobutton group gp1.
selection-screen end of block b1.

selection-screen begin of block b2 with frame.
parameters: p_gltrp type afko-gltrp modif id g1.
parameters: p_werks type aufk-werks modif id g1.
parameters: p_datum type afko-gltrp modif id g2.
parameters: p_uzeit type aufk-werks modif id g2.
selection-screen end of block b2.

at selection-screen output.

  loop at screen.
    if p_g1 = 'X' and screen-group1 = 'G2'.
      screen-active = 0.
      modify screen.
    endif.
    if p_g2 = 'X' and screen-group1 = 'G1'.
      screen-active = 0.
      modify screen.
    endif.
  endloop.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 18:17:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852898#M360969</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-01-29T18:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: help with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852899#M360970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi deepthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try doing this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt;IF p_rad1 = 'X'.(first radiobutton is selected)&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'GR2'&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;screen-active = '1'.&lt;/P&gt;&lt;P&gt;screen-invisible = '0'.&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;ELSE.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'GR1'. (second is selected)&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;screen-active = '1'.&lt;/P&gt;&lt;P&gt;screen-invisible = '0'.&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;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;do reward if it helps,&lt;/P&gt;&lt;P&gt;priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 18:19:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852899#M360970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T18:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: help with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852900#M360971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;with the help of SCREEN table u can hide the block of selection-screen.&lt;/P&gt;&lt;P&gt;based on radio button u may see the area of screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        santhosh reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 18:20:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852900#M360971</guid>
      <dc:creator>SantoshKallem</dc:creator>
      <dc:date>2007-01-29T18:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: help with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852901#M360972</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;tHANKS FOR THE REPLY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I UNDERSTOOD WHAT YOU ARE TALKING ABOUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THE SELECTION SCREEN AT THE BOTTOM CHANGES BASED ON THE RADIO BUTTON SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALLY I AM ABLE TO SEE THE THE SELECTION FOR THE RADIO BUTTON WHICH IS CHECKED BY DEFAULT.&lt;/P&gt;&lt;P&gt;IS THAT HOW IT WORKS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 18:33:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852901#M360972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T18:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: help with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852902#M360973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 18:35:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852902#M360973</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-01-29T18:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: help with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852903#M360974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could set it so that the default radio button hides all of the fields (except the radio buttons) and when one of the other ones is selected, only the fields you want to display are shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 18:42:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852903#M360974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T18:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: help with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852904#M360975</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 awarded points to all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 18:45:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-selection-screen/m-p/1852904#M360975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T18:45:47Z</dc:date>
    </item>
  </channel>
</rss>

