<?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: Regarding the dynamic Selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571150#M1270852</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use AT Selection-Screen on Field 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the Use Loop at screen to make other selection visible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can group the selection screen variable to groups to make a group visible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If screen-group = '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;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mathivanan.G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 May 2009 06:09:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-15T06:09:43Z</dc:date>
    <item>
      <title>Regarding the dynamic Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571149#M1270851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I have 4 diffferent sections to be excuted on the selection screen one at a time. I want a functionality like when the user selects Section 1, the selection screen for that particular section will be displayed and others will be hidden. When the user selects Section 2, the section 2 selection-screen will be displayed and others will not and so on. Can this be implemented without using TABS and without using Module pool programming?&lt;/P&gt;&lt;P&gt;Do let me know with example if you have any.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm regards,&lt;/P&gt;&lt;P&gt;Harshad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 06:07:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571149#M1270851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T06:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding the dynamic Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571150#M1270852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use AT Selection-Screen on Field 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the Use Loop at screen to make other selection visible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can group the selection screen variable to groups to make a group visible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If screen-group = '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;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mathivanan.G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 06:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571150#M1270852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T06:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding the dynamic Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571151#M1270853</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;You achieve it by using event AT SELECTION-SCREEN OUTPUT. In that event using &lt;/P&gt;&lt;P&gt;LOOP SCREEN AND ENDLOOP you can enable or disable the required block using Modif id parameter of the corresonding selection screen block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Ex :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first provide modif id as M1 for screen1 , M2 for second selection screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then&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;If screen-group1 = 'M2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  disbale M! group by providing active = 0&lt;/P&gt;&lt;P&gt;like this you can try.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 06:16:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571151#M1270853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T06:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding the dynamic Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571152#M1270854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Plz see the below link...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1105475"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;kanishak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 08:49:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571152#M1270854</guid>
      <dc:creator>kanishakgupta1</dc:creator>
      <dc:date>2009-05-15T08:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding the dynamic Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571153#M1270855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harshad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do it using the MODIF ID command in your selection screen parameters &amp;amp; then activare or deactovate the screen accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sachin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 09:22:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571153#M1270855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T09:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding the dynamic Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571154#M1270856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey try this&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: p_myparm TYPE c LENGTH 15,
                         rb_rbn1  TYPE flag RADIOBUTTON GROUP g1 DEFAULT 'X' MODIF ID id1 ,
                          rb_rbn2  TYPE flag RADIOBUTTON GROUP g1 MODIF ID id2 ,
                          rb_rbn3  TYPE flag RADIOBUTTON GROUP g1 MODIF ID id3.
AT SELECTION-SCREEN OUTPUT.
  PERFORM sub_output.
FORM sub_output.
  IF p_myparm = ''.
    LOOP AT SCREEN.
      IF screen-group1 = 'ID1' OR screen-group1 = 'ID2' OR screen-group1 = 'ID3'.
        screen-input = '0'.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
  ENDIF.
ENDFORM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;S.Janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 10:23:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-dynamic-selection-screen/m-p/5571154#M1270856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T10:23:58Z</dc:date>
    </item>
  </channel>
</rss>

