<?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: Multiple Selection-Screens in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247050#M1013710</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZDYNAMIC_PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: rb1 RADIOBUTTON GROUP ab MODIF ID bl2,&lt;/P&gt;&lt;P&gt;            rb2 RADIOBUTTON GROUP ab MODIF ID bl2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; parameter p_val1 type char10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; parameter p_val2 type char10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF SCREEN 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if rb1 = 'X'.&lt;/P&gt;&lt;P&gt; call selection-screen 100.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt; call selection-screen 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Aug 2008 11:47:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-01T11:47:42Z</dc:date>
    <item>
      <title>Multiple Selection-Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247046#M1013706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a scenario where i need to have three selection-screens&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;When we execute the prg the first selection-screen should be displayed with 2 radio buttons&lt;/P&gt;&lt;P&gt;When 1st radiobutton is selected, it has to take us to 2nd selection-screen.&lt;/P&gt;&lt;P&gt;When 2nd radiobutton is selected, it has to take us to 3rd selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried some code using loop at screen.  but it dint work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone suggest any solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 11:34:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247046#M1013706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T11:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Selection-Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247047#M1013707</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;Firstly create two screens lets say screen 100 and 200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if radio_button1 = 'X' &lt;/P&gt;&lt;P&gt;call screen 100&lt;/P&gt;&lt;P&gt;elseif radio_button2 = 'X' &lt;/P&gt;&lt;P&gt;call screen 200&lt;/P&gt;&lt;P&gt;endif .&lt;/P&gt;&lt;P&gt;&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;Hitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 11:37:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247047#M1013707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T11:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Selection-Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247048#M1013708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do this in SE80 creating 3 screens and in each whtever buttons, parameters. etc u require.&lt;/P&gt;&lt;P&gt;on button click u can call the 2nd screen and so on&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 11:38:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247048#M1013708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T11:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Selection-Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247049#M1013709</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;Group all the selection fields as per their selection screen using&lt;/P&gt;&lt;P&gt;and use &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;&lt;/P&gt;&lt;P&gt;here u active the slection group u want based on radio btton selection and hide the other 2 selection screens.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 11:40:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247049#M1013709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T11:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Selection-Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247050#M1013710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZDYNAMIC_PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: rb1 RADIOBUTTON GROUP ab MODIF ID bl2,&lt;/P&gt;&lt;P&gt;            rb2 RADIOBUTTON GROUP ab MODIF ID bl2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; parameter p_val1 type char10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; parameter p_val2 type char10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF SCREEN 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if rb1 = 'X'.&lt;/P&gt;&lt;P&gt; call selection-screen 100.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt; call selection-screen 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 11:47:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247050#M1013710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T11:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Selection-Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247051#M1013711</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;Try the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If radio_button1 = 'X'.&lt;/P&gt;&lt;P&gt; leave to screen 200.&lt;/P&gt;&lt;P&gt;Elseif&lt;/P&gt;&lt;P&gt;radio_button2 = 'X'.&lt;/P&gt;&lt;P&gt;leave to screen 300.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aleem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 11:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247051#M1013711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T11:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Selection-Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247052#M1013712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Thank You all...my issue is solved&lt;/P&gt;&lt;P&gt;Thanks Again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 12:19:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247052#M1013712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T12:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Selection-Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247053#M1013713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2015 12:41:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247053#M1013713</guid>
      <dc:creator>former_member334666</dc:creator>
      <dc:date>2015-10-29T12:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Selection-Screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247054#M1013714</link>
      <description>&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/24116362/how-to-handle-subsequent-selection-screens"&gt;https://stackoverflow.com/questions/24116362/how-to-handle-subsequent-selection-screens&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT zfoobar.

PARAMETERS p_b01 RADIOBUTTON GROUP cmd.
PARAMETERS p_b02 RADIOBUTTON GROUP cmd.

SELECTION-SCREEN BEGIN OF SCREEN 1100.
PARAMETERS p_einri TYPE einri OBLIGATORY.
SELECTION-SCREEN END OF SCREEN 1100.

SELECTION-SCREEN BEGIN OF SCREEN 1200.
PARAMETERS p_bukrs TYPE bukrs OBLIGATORY.
SELECTION-SCREEN END OF SCREEN 1200.

START-OF-SELECTION.
  IF p_b01 = abap_true.
    CALL SELECTION-SCREEN 1100.
    IF sy-subrc = 0. "The most tricky code line
      PERFORM processing_b01.
    ENDIF.
  ELSEIF p_b02 = abap_true.
    CALL SELECTION-SCREEN 1200.
    IF sy-subrc = 0. "The most tricky code line
       PERFORM processing_b02.
    ENDIF.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;SAP DEMO REPORTS.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT demo_sel_screen_as_subscreen. 
REPORT demo_call_selection_screen. 
REPORT demo_sel_screen_pushbutton.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;A href="https://abapinho.com/en/2012/04/botoes-no-ecra-de-seleccao/"&gt;https://abapinho.com/en/2012/04/botoes-no-ecra-de-seleccao/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 10:51:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-screens/m-p/4247054#M1013714</guid>
      <dc:creator>Sergiu</dc:creator>
      <dc:date>2022-03-25T10:51:56Z</dc:date>
    </item>
  </channel>
</rss>

