<?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/1286837#M154140</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       If radi button is 'X'. &lt;/P&gt;&lt;P&gt;then  &lt;/P&gt;&lt;P&gt;call SELECTION-SCREEN scr STARTING AT x1 y1 ... ENDING AT x2 y2 &lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;I think this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anil Kuamr K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Mar 2006 08:22:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-29T08:22:13Z</dc:date>
    <item>
      <title>SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286833#M154136</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 have done an Selection screen with some radiobuttons. After a radiobutton was checked, I want to show some parameter fields, specific ones for each radiobutton. (Something like another selection screen for each radiobutton).&lt;/P&gt;&lt;P&gt;How can I do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 07:25:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286833#M154136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T07:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286834#M154137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;**********************************************************************&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;SELECTION SCREEN&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;**********************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:  p_ver RADIOBUTTON GROUP g1 USER-COMMAND rad DEFAULT 'X',&lt;/P&gt;&lt;P&gt;             p_sab RADIOBUTTON GROUP g1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_vbeln FOR vbak-vbeln NO INTERVALS MODIF ID gr1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:    p_dwfile TYPE  rlgrap-filename&lt;/P&gt;&lt;P&gt;               DEFAULT 'C:\test1.txt' MODIF ID gr2,         "#EC NOTEXT&lt;/P&gt;&lt;P&gt;               p_upfile TYPE  rlgrap-filename&lt;/P&gt;&lt;P&gt;               DEFAULT 'C:\test.txt' MODIF ID gr3.          "#EC NOTEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF  p_sab = 'X'.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'GR1' OR 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 = 'GR3'.&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;regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 07:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286834#M154137</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-03-29T07:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286835#M154138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By default one of the radiobuttons will be checked when you create radiobuttons in a radiogroup. &lt;/P&gt;&lt;P&gt;for ex:&lt;/P&gt;&lt;P&gt;parameters: &lt;/P&gt;&lt;P&gt;r1 type radiobutton group 'G1',&lt;/P&gt;&lt;P&gt;p1 type c modif id 'ABC',&lt;/P&gt;&lt;P&gt;r2 type radiobutton group 'G1',&lt;/P&gt;&lt;P&gt;p2 type c modif id 'DEF'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;if r1 = 'X'.&lt;/P&gt;&lt;P&gt; loop at screen.&lt;/P&gt;&lt;P&gt;   if screen-group1 = 'ABC'. &lt;/P&gt;&lt;P&gt;     screen-input = 1.&lt;/P&gt;&lt;P&gt;     screen-invisible = 0.&lt;/P&gt;&lt;P&gt;     modify screen.&lt;/P&gt;&lt;P&gt;   elseif screen-group1 = 'DEF'.&lt;/P&gt;&lt;P&gt;     screen-input = 0.&lt;/P&gt;&lt;P&gt;     screen-invisible = 1.&lt;/P&gt;&lt;P&gt;     modify screen.&lt;/P&gt;&lt;P&gt;   endif. &lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;elseif r2 = 'X'.&lt;/P&gt;&lt;P&gt; loop at screen.&lt;/P&gt;&lt;P&gt;   if screen-group1 = 'ABC'. &lt;/P&gt;&lt;P&gt;     screen-input = 0.&lt;/P&gt;&lt;P&gt;     screen-invisible = 1.&lt;/P&gt;&lt;P&gt;     modify screen.&lt;/P&gt;&lt;P&gt;   elseif screen-group1 = 'DEF'.&lt;/P&gt;&lt;P&gt;     screen-input = 1.&lt;/P&gt;&lt;P&gt;     screen-invisible = 0.&lt;/P&gt;&lt;P&gt;     modify screen.&lt;/P&gt;&lt;P&gt;   endif. &lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 07:36:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286835#M154138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T07:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286836#M154139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You will have to use AT SELECTION SCREEN OUTPUT event.&lt;/P&gt;&lt;P&gt;You will have to group the screen elements using MODIF ID and then make the group visible/invisible according to which radio button is clicked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'MODIFID1'.&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;modify screen.&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;Regards,&lt;/P&gt;&lt;P&gt;Shshank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 07:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286836#M154139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T07:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286837#M154140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       If radi button is 'X'. &lt;/P&gt;&lt;P&gt;then  &lt;/P&gt;&lt;P&gt;call SELECTION-SCREEN scr STARTING AT x1 y1 ... ENDING AT x2 y2 &lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;I think this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anil Kuamr K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 08:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286837#M154140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T08:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286838#M154141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If radi button is 'X'. &lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;call SELECTION-SCREEN scr STARTING AT x1 y1 ... ENDING AT x2 y2 &lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;I think this will help you.&lt;/P&gt;&lt;P&gt;if this does not suit to your requirement &lt;/P&gt;&lt;P&gt;please let me know your requirement in detail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anil Kumar K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 08:23:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286838#M154141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T08:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286839#M154142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Radiobuttons can be defined on selection screens as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: &amp;lt;butn_name&amp;gt; RADIOBUTTON GROUP &amp;lt;grp_name&amp;gt; USER-COMMAND &amp;lt;cmd_name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A minimum of 2 radio buttons have to be assigned to a radiobutton group.One USER-COMMAND can be assigned to all the radiobuttons in the radiobutton group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So depending upon the group in which the selected radiobutton belongs to , we can call different selection screens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZSHAIL_RADIO .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES sscrfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: rad1 RADIOBUTTON GROUP rad USER-COMMAND RADIO1,&lt;/P&gt;&lt;P&gt;            rad3 RADIOBUTTON GROUP rad.&lt;/P&gt;&lt;P&gt;PARAMETERS: rad2 RADIOBUTTON group rai user-command RADIO2  ,&lt;/P&gt;&lt;P&gt;            rad4 RADIOBUTTON group rai.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN on RADIOBUTTON GROUP RAD.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;call the required selection screen or whatever &lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;processing you want to do..&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly you can use other radio buttons...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sylendra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 09:34:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1286839#M154142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T09:34:46Z</dc:date>
    </item>
  </channel>
</rss>

