<?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: Version 4.7 (Selection screen) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180728#M125730</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;&lt;/P&gt;&lt;P&gt;try this sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Z_SELSCR_BLOCK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS show_all radiobutton  group g1 USER-COMMAND flag.&lt;/P&gt;&lt;P&gt;PARAMETERS no_show radiobutton  group g1 default 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.&lt;/P&gt;&lt;P&gt;PARAMETERS: p1(10) TYPE c,&lt;/P&gt;&lt;P&gt;            p2(10) TYPE c,&lt;/P&gt;&lt;P&gt;            p3(10) TYPE c.&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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(30) text-006 FOR FIELD insme modif id bl2.&lt;/P&gt;&lt;P&gt;PARAMETERS: insme AS CHECKBOX MODIF ID bl2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            selection-screen end of line.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&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 show_all &amp;lt;&amp;gt; 'X' AND&lt;/P&gt;&lt;P&gt;       screen-group1 = 'BL2'.&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;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Feb 2006 09:05:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-28T09:05:55Z</dc:date>
    <item>
      <title>Version 4.7 (Selection screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180718#M125720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me out in solving the below problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on 4.7 version...and below is the code of a simple report fpr testing. On the selection screen there is one select option which can be displayed or supressed dynamically. For this I am using 'Modif ID xxx'. But the problem here is...when ever 'Loop at SCREEN - ENDLOOP' uesd to set the screen atrributes, on selection screen, a small box appearing before LOW input box of the select option(As you know there are only two input boxes(LOW, HIGH) for any select-option).&lt;/P&gt;&lt;P&gt;For eg. try this below program in Version 4.7&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note that...the below program is just to let you know how the selection screen appearing now.&lt;/P&gt;&lt;P&gt;As it is a must to set the below entries for my requirement..I cannot avoid any of them.&lt;/P&gt;&lt;P&gt;	screen-active.&lt;/P&gt;&lt;P&gt;	screen-input .&lt;/P&gt;&lt;P&gt;	screen-output.&lt;/P&gt;&lt;P&gt;	screen-invisible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------" /&gt;&lt;P&gt;REPORT sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables:mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options:s_mat1  for mara-matnr modif id GR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;LOOP at screen.&lt;/P&gt;&lt;P&gt;    if screen-group1 = 'GR1'.&lt;/P&gt;&lt;P&gt;	screen-active = '0'.&lt;/P&gt;&lt;P&gt;	screen-input = '0'.&lt;/P&gt;&lt;P&gt;	screen-output = '0'.&lt;/P&gt;&lt;P&gt;	screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;&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;start-of-selection.&lt;/P&gt;&lt;P&gt;write :/' Test program'.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Feb 2024 02:08:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180718#M125720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2024-02-04T02:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: Version 4.7 (Selection screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180719#M125721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the program which you have given completely hides the select-option.&lt;/P&gt;&lt;P&gt;can you check it once..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:34:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180719#M125721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T08:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Version 4.7 (Selection screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180720#M125722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZSR_TEST1     .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES:MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:S_MAT1 FOR MARA-MATNR MODIF ID GR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF SCREEN-GROUP1 = 'GR1'.&lt;/P&gt;&lt;P&gt;      SCREEN-ACTIVE = '1'.&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = '1'.&lt;/P&gt;&lt;P&gt;      SCREEN-OUTPUT = '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;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  WRITE :/' Test program'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:39:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180720#M125722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T08:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Version 4.7 (Selection screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180721#M125723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables:mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options:s_mat1 for mara-matnr modif id GR1.&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 screen-group1 = 'GR1'.&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;screen-input = '0'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;screen-output = '0'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;&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;start-of-selection.&lt;/P&gt;&lt;P&gt;write :/' Test program'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check above it will work&lt;/P&gt;&lt;P&gt;regard&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:40:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180721#M125723</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-02-28T08:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Version 4.7 (Selection screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180722#M125724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tables:mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options:s_mat1 for mara-matnr modif id GR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;LOOP at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'GR1'.&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;P&gt;screen-input = '0'.&lt;/P&gt;&lt;P&gt;screen-output = '0'.&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;&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;start-of-selection.&lt;/P&gt;&lt;P&gt;write :/' Test program'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi SR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Metioned completely hides the selection-screen. What is ur req..pls can you explain some what broadly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:40:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180722#M125724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T08:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Version 4.7 (Selection screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180723#M125725</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 this.&lt;/P&gt;&lt;P&gt;TABLES:MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:S_MAT1 FOR MARA-MATNR MODIF ID GR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*INITIALIZATION.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP1 = 'GR1'.&lt;/P&gt;&lt;P&gt;SCREEN-ACTIVE = '1'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = '1'.&lt;/P&gt;&lt;P&gt;SCREEN-OUTPUT = '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;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;WRITE :/' Test program'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:45:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180723#M125725</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-02-28T08:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Version 4.7 (Selection screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180724#M125726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For Suppressing you can just set &lt;/P&gt;&lt;P&gt;screen-input = '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you be clear about what exactly is your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Sriranjani.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:48:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180724#M125726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T08:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: Version 4.7 (Selection screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180725#M125727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  SR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to hide the select-optiopns dynamically then do this code in at selection-screen output&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 screen-group1 = 'GR1'.&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;P&gt;screen-input = '0'.&lt;/P&gt;&lt;P&gt;screen-output = '0'.&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;&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;regards&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:53:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180725#M125727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T08:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Version 4.7 (Selection screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180726#M125728</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;This code will hide the select option and then show if you press enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables:mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options:s_mat1 for mara-matnr modif id GR1.&lt;/P&gt;&lt;P&gt;Initialization.&lt;/P&gt;&lt;P&gt;LOOP at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'GR1'.&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;P&gt;screen-input = '0'.&lt;/P&gt;&lt;P&gt;screen-output = '0'.&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&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;start-of-selection.&lt;/P&gt;&lt;P&gt;write :/' Test program'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:53:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180726#M125728</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-02-28T08:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: Version 4.7 (Selection screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180727#M125729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I am giving U the clear picture...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is my actual requirement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 7 radiobuttons on a selection screen.&lt;/P&gt;&lt;P&gt;Based on selection of the radio button, the selection screen should change (i.e. only respective select-options/parametes should appear).&lt;/P&gt;&lt;P&gt;For this I am using MODIF ID... and with the 'LOOP AT SCREEN' I am achieving the required functionality.. but only thing is... an additional box appearing on the selectioscreen.&lt;/P&gt;&lt;P&gt;Could you please help me in avoiding that additional box on selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:57:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180727#M125729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T08:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Version 4.7 (Selection screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180728#M125730</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;&lt;/P&gt;&lt;P&gt;try this sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Z_SELSCR_BLOCK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS show_all radiobutton  group g1 USER-COMMAND flag.&lt;/P&gt;&lt;P&gt;PARAMETERS no_show radiobutton  group g1 default 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.&lt;/P&gt;&lt;P&gt;PARAMETERS: p1(10) TYPE c,&lt;/P&gt;&lt;P&gt;            p2(10) TYPE c,&lt;/P&gt;&lt;P&gt;            p3(10) TYPE c.&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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(30) text-006 FOR FIELD insme modif id bl2.&lt;/P&gt;&lt;P&gt;PARAMETERS: insme AS CHECKBOX MODIF ID bl2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            selection-screen end of line.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&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 show_all &amp;lt;&amp;gt; 'X' AND&lt;/P&gt;&lt;P&gt;       screen-group1 = 'BL2'.&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;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 09:05:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180728#M125730</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T09:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: Version 4.7 (Selection screen)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180729#M125731</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;This code will satisfy the requirement.&lt;/P&gt;&lt;P&gt;tables:mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options:s_mat1 for mara-matnr modif id GR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: rb_show RADIOBUTTON GROUP 1 USER-COMMAND rad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rb_hide RADIOBUTTON GROUP 1 DEFAULT 'X'.&lt;/P&gt;&lt;P&gt;&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 = 'GR1'. "Subsequent Doc Category&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF rb_hide = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 09:07:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/version-4-7-selection-screen/m-p/1180729#M125731</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-02-28T09:07:41Z</dc:date>
    </item>
  </channel>
</rss>

