<?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 Selection Screen design.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751184#M325732</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;On the selection screen, I have 2 pushbuttons and 4 radio buttons. The requirement is, when I run the program, initially none of the radio button should be appeared on selection screen. Only two pushbuttons should be on the screen. Only if I click the first pushbutton, then first and second radio button should appear alongwith both bushbuttons. same way when I click the other pushbutton, the remaininng two radio buttons should come. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pl help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hardik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Dec 2006 06:13:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-27T06:13:14Z</dc:date>
    <item>
      <title>Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751184#M325732</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;On the selection screen, I have 2 pushbuttons and 4 radio buttons. The requirement is, when I run the program, initially none of the radio button should be appeared on selection screen. Only two pushbuttons should be on the screen. Only if I click the first pushbutton, then first and second radio button should appear alongwith both bushbuttons. same way when I click the other pushbutton, the remaininng two radio buttons should come. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pl help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hardik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 06:13:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751184#M325732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T06:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751185#M325733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai&lt;/P&gt;&lt;P&gt;  in selection screen, there is syntex for it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  while designing radiobutton u set modif id for it,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PARAMETERS: r1 RADIOBUTTON GROUP rad1 modif id 'SC1',&lt;/P&gt;&lt;P&gt;            r2 RADIOBUTTON GROUP rad1 DEFAULT 'X' modif id 'SC1',&lt;/P&gt;&lt;P&gt;            r3 RADIOBUTTON GROUP rad1 modif id 'SC1',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            s1 RADIOBUTTON GROUP rad2 modif id 'SC2',&lt;/P&gt;&lt;P&gt;            s2 RADIOBUTTON GROUP rad2 modif id 'SC2',&lt;/P&gt;&lt;P&gt;            s3 RADIOBUTTON GROUP rad2 DEFAULT 'X' modif id 'SC2'.&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;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-group1 = 'SC1'.&lt;/P&gt;&lt;P&gt;      screen-intensified = '1'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      CONTINUE.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    IF screen-group1 = 'SC2'.&lt;/P&gt;&lt;P&gt;      screen-intensified = '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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this coding its very useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 06:22:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751185#M325733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T06:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751186#M325734</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;While designing the Selection Screen,put the radio buttons into two groups using MODIF ID keyword at the end of the statement.&lt;/P&gt;&lt;P&gt;After that,there is one event called&lt;/P&gt;&lt;P&gt;AT SELECTION SCREEN OUPUT.&lt;/P&gt;&lt;P&gt;here you loop at the screen and can the active the required radio buttions depending on the push button pressed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Balaji Reddy G&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****Reward if the answers are helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 06:26:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751186#M325734</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T06:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751187#M325735</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;U can achieve this with the help of 'AT SELECTION-SCREEN OUTPUT' event.&lt;/P&gt;&lt;P&gt;First you have to declare 'MODIF ID' along with your radio button declaration.&lt;/P&gt;&lt;P&gt;Here for the first two radio buttons one modif id say ABC and for the other two you have to give different modif id say DEF.&lt;/P&gt;&lt;P&gt;Then in AT SELECTION-SCREEN OUTPUT event u have to write code something similer to this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;WHEN 'ABCD'.          " push button 1 fcode&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-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;When 'EFGH' .            "Push button 2 fcode&lt;/P&gt;&lt;P&gt;Loop At Screen.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'DEF'.&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;ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 06:27:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751187#M325735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T06:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751188#M325736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi .&lt;/P&gt;&lt;P&gt;modify screen will work..but one radiobutton from a grp shud atleast  be visible at one time..so u can not have all the four radiobuttons invisible initially..one shud be visible automatically..wht u can do is u can have checkboxes instead of the radiobuttons tht will run fine ..&lt;/P&gt;&lt;P&gt;hope u got my point&lt;/P&gt;&lt;P&gt;amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 06:31:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751188#M325736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T06:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751189#M325737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sreenivasa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have already tried this. bt SY-UCOMM does nt hold any value under AT SELECTION-SCREEN OUTPUT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so button-click will not be carried to next AT SELECTION-SCREEN OUTPUT .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other possiblity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Hardik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 06:36:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751189#M325737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T06:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751190#M325738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt; try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES sscrfields.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: &lt;/P&gt;&lt;P&gt;    PUSHBUTTON 2(10)  but1 USER-COMMAND cli1, &lt;/P&gt;&lt;P&gt;    PUSHBUTTON 12(30) but2 USER-COMMAND cli2,&lt;/P&gt;&lt;P&gt;    END OF SCREEN 500. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: r1 RADIOBUTTON GROUP g1,&lt;/P&gt;&lt;P&gt;                  r2 RADIOBUTTON GROUP g1,&lt;/P&gt;&lt;P&gt;                  r3 RADIOBUTTON GROUP g2,&lt;/P&gt;&lt;P&gt;                  r4 RADIOBUTTON GROUP g2.&lt;/P&gt;&lt;P&gt;data : Flag type i value 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;if flag = 0.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'r1' or screen-name = 'r2' or screen-name = 'r3' or screen-name = 'r4' .&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;screen-active = '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;flag = 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;CASE sscrfields. &lt;/P&gt;&lt;P&gt;    WHEN 'CLI1'. &lt;/P&gt;&lt;P&gt;      loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'r1' or screen-name = 'r2'  .&lt;/P&gt;&lt;P&gt;screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;screen-active = '1'.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if screen-name = 'r3' or screen-name = 'r4'  .&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;screen-active = '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;    WHEN 'CLI2'. &lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'r3' or screen-name = 'r4'  .&lt;/P&gt;&lt;P&gt;screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;screen-active = '1'.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if screen-name = 'r1' or screen-name = 'r2'  .&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;screen-active = '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;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 06:38:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751190#M325738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T06:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751191#M325739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just try this code&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;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_MATNR FOR MARA-MATNR.&lt;/P&gt;&lt;P&gt;PARAMETERS : R1 RADIOBUTTON GROUP RB1 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;             R2 RADIOBUTTON GROUP RB1,&lt;/P&gt;&lt;P&gt;             R3 RADIOBUTTON GROUP RB1,&lt;/P&gt;&lt;P&gt;             R4 RADIOBUTTON GROUP RB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN  PUSHBUTTON /10(20) FRST USER-COMMAND FRST.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN  PUSHBUTTON /10(20) SCND USER-COMMAND SCND.&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;DATA : ACTIVE1  VALUE '1',&lt;/P&gt;&lt;P&gt;       ACTIVE2 VALUE '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;move 'frst' to frst.&lt;/P&gt;&lt;P&gt;move 'scnd' to scnd.&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;&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'R1' OR SCREEN-NAME = 'R2' .&lt;/P&gt;&lt;P&gt;     SCREEN-INVISIBLE = ACTIVE1.&lt;/P&gt;&lt;P&gt;     MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'R3' OR SCREEN-NAME = 'R4' .&lt;/P&gt;&lt;P&gt;     SCREEN-INVISIBLE = ACTIVE2.&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;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'FRST'.&lt;/P&gt;&lt;P&gt;   ACTIVE1 = '0'.&lt;/P&gt;&lt;P&gt;   ACTIVE2 = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SCND'.&lt;/P&gt;&lt;P&gt;      ACTIVE2 = '0'.&lt;/P&gt;&lt;P&gt;   ACTIVE1 = '1'.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 06:43:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751191#M325739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T06:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751192#M325740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its a requirement, so I cant change it to checkboxes. And Its possible to make all 4 invisible by modifying screen.&lt;/P&gt;&lt;P&gt;Bt I m nt able to carry the pushbutton click from at selection screen to next at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hardik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 06:47:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751192#M325740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T06:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751193#M325741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;slight modification to shiba's code, u have to declare Mara in the tables statement - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : SSCRFIELDS,mara.&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;SELECT-OPTIONS : S_MATNR FOR MARA-MATNR.&lt;/P&gt;&lt;P&gt;PARAMETERS : R1 RADIOBUTTON GROUP RB1 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;R2 RADIOBUTTON GROUP RB1,&lt;/P&gt;&lt;P&gt;R3 RADIOBUTTON GROUP RB1,&lt;/P&gt;&lt;P&gt;R4 RADIOBUTTON GROUP RB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /10(20) FRST USER-COMMAND FRST.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /10(20) SCND USER-COMMAND SCND.&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;DATA : ACTIVE1 VALUE '1',&lt;/P&gt;&lt;P&gt;ACTIVE2 VALUE '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;move 'frst' to frst.&lt;/P&gt;&lt;P&gt;move 'scnd' to scnd.&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;&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'R1' OR SCREEN-NAME = 'R2' .&lt;/P&gt;&lt;P&gt;SCREEN-INVISIBLE = ACTIVE1.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'R3' OR SCREEN-NAME = 'R4' .&lt;/P&gt;&lt;P&gt;SCREEN-INVISIBLE = ACTIVE2.&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;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'FRST'.&lt;/P&gt;&lt;P&gt;ACTIVE1 = '0'.&lt;/P&gt;&lt;P&gt;ACTIVE2 = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SCND'.&lt;/P&gt;&lt;P&gt;ACTIVE2 = '0'.&lt;/P&gt;&lt;P&gt;ACTIVE1 = '1'.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 06:48:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751193#M325741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T06:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751194#M325742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TABLES : SSCRFIELDS.&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;SELECTION-SCREEN PUSHBUTTON /10(20) FRST USER-COMMAND FRST.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /10(20) SCND USER-COMMAND SCND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : R1 RADIOBUTTON GROUP RB1 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;R2 RADIOBUTTON GROUP RB1,&lt;/P&gt;&lt;P&gt;R3 RADIOBUTTON GROUP RB2 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;R4 RADIOBUTTON GROUP RB2.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&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-NAME = 'R1' OR SCREEN-NAME = 'R2' .&lt;/P&gt;&lt;P&gt;SCREEN-INVISIBLE = ACTIVE1.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'R3' OR SCREEN-NAME = 'R4' .&lt;/P&gt;&lt;P&gt;SCREEN-INVISIBLE = ACTIVE2.&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;&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;CASE SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'FRST'.&lt;/P&gt;&lt;P&gt;            ACTIVE1 = '0'.&lt;/P&gt;&lt;P&gt;            ACTIVE2 = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SCND'.&lt;/P&gt;&lt;P&gt;            ACTIVE2 = '0'.&lt;/P&gt;&lt;P&gt;            ACTIVE1 = '1'.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 06:54:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751194#M325742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T06:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751195#M325743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;still not solved?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 07:01:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751195#M325743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T07:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751196#M325744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES sscrfields.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: &lt;/P&gt;&lt;P&gt;PUSHBUTTON 2(10) but1 USER-COMMAND cli1, &lt;/P&gt;&lt;P&gt;PUSHBUTTON 12(30) but2 USER-COMMAND cli2,&lt;/P&gt;&lt;P&gt;END OF SCREEN 500. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: r1 RADIOBUTTON GROUP g1,&lt;/P&gt;&lt;P&gt;r2 RADIOBUTTON GROUP g1,&lt;/P&gt;&lt;P&gt;r3 RADIOBUTTON GROUP g2,&lt;/P&gt;&lt;P&gt;r4 RADIOBUTTON GROUP g2.&lt;/P&gt;&lt;P&gt;data : Flag type i value 0,&lt;/P&gt;&lt;P&gt;         click(5) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;at selection-screen output.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;if flag = 0.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'r1' or screen-name = 'r2' or screen-name = 'r3' or screen-name = 'r4' .&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;screen-active = '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;flag = 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;CASE CLICK. &lt;/P&gt;&lt;P&gt;WHEN 'CLI1'. &lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'r1' or screen-name = 'r2' .&lt;/P&gt;&lt;P&gt;screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;screen-active = '1'.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if screen-name = 'r3' or screen-name = 'r4' .&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;screen-active = '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;WHEN 'CLI2'. &lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'r3' or screen-name = 'r4' .&lt;/P&gt;&lt;P&gt;screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;screen-active = '1'.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if screen-name = 'r1' or screen-name = 'r2' .&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;screen-active = '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;endcase. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;at slection-screen.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;CASE sscrfields. &lt;/P&gt;&lt;P&gt;WHEN 'CLI1'. &lt;/P&gt;&lt;P&gt;click = 'CLI1'.&lt;/P&gt;&lt;P&gt;WHEN 'CLI2'. &lt;/P&gt;&lt;P&gt;click = 'CLI2'.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 07:01:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751196#M325744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T07:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751197#M325745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Shiba&lt;/P&gt;&lt;P&gt;It worked. Rewarded&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hardik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 07:03:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751197#M325745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T07:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen design..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751198#M325746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;try with this following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables sscrfields.&lt;/P&gt;&lt;P&gt;data:  a type c value 'X'.&lt;/P&gt;&lt;P&gt;data: b type c value 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b .&lt;/P&gt;&lt;P&gt;selection-screen PUSHBUTTON 12(15) but1 USER-COMMAND cli1.&lt;/P&gt;&lt;P&gt;selection-screen skip.&lt;/P&gt;&lt;P&gt;selection-screen PUSHBUTTON 12(15) but2 USER-COMMAND cli2.&lt;/P&gt;&lt;P&gt;selection-screen skip.&lt;/P&gt;&lt;P&gt;parameters: r1  radiobutton  group radi modif id g1 ,&lt;/P&gt;&lt;P&gt;            r2 radiobutton group radi modif id g1.&lt;/P&gt;&lt;P&gt;selection-screen skip.&lt;/P&gt;&lt;P&gt;parameters: r3 radiobutton group  rad modif id g2,&lt;/P&gt;&lt;P&gt;           r4 radiobutton group rad modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen end of block b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;but1 = 'PUSHBUTTON1'.&lt;/P&gt;&lt;P&gt;but2 = 'PUSHBUTTON2'.&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 = 'G1'.&lt;/P&gt;&lt;P&gt;     if a = 'X'.&lt;/P&gt;&lt;P&gt;      screen-active = 0.&lt;/P&gt;&lt;P&gt;      modify screen.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;  if screen-group1 = 'G2'.&lt;/P&gt;&lt;P&gt;    if b = 'X'.&lt;/P&gt;&lt;P&gt;      screen-active = 0.&lt;/P&gt;&lt;P&gt;      modify screen.&lt;/P&gt;&lt;P&gt;    endif.&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;at selection-screen.&lt;/P&gt;&lt;P&gt; case sscrfields-ucomm.&lt;/P&gt;&lt;P&gt;  when 'CLI1'.&lt;/P&gt;&lt;P&gt;   clear a.&lt;/P&gt;&lt;P&gt;   when 'CLI2'.&lt;/P&gt;&lt;P&gt;   clear b.&lt;/P&gt;&lt;P&gt; endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helpful. &lt;/P&gt;&lt;P&gt; if it helpful reward me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 07:49:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/1751198#M325746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T07:49:16Z</dc:date>
    </item>
  </channel>
</rss>

