<?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: At-selection-screen modification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179648#M1373041</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as both the radio buttons belong to the same group so we can check only one at a time..the requirement which you specified earlier should work fine with Peters code. I don't understand where you are facing the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else you can try other way .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create two radio buttons , one radio button having two fields header and item and the other radiobutton is having only header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Header radio btton is checked by default. so the header field (vbeln) is ready for input and at the same time the item radio button is uncehcked and both the fields are in display mode. when i click on item radio button the two fileds now ready for input and the header radio button field is disabled..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Oct 2009 10:17:24 GMT</pubDate>
    <dc:creator>former_member404244</dc:creator>
    <dc:date>2009-10-01T10:17:24Z</dc:date>
    <item>
      <title>At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179636#M1373029</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;&lt;/P&gt;&lt;P&gt;I am doing the selection screen modification. The selection screen is designed such as i have two radio buttons 1. header &amp;amp; 2. Item anb beside header radio button i have field sales document number and beside item radio button sales item number field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(30) text-005.
SELECTION-SCREEN: position 32.
parameter:p_sh type c radiobutton group rg.                "Sales header
selection-screen: comment 35(15) for field p_sh.
selection-screen: comment 60(20) for field p_vbeln.
parameter:p_vbeln like vbak-vbeln MODIF ID gp5.            "Sales Document
SELECTION-SCREEN: END OF LINE.

SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN: position 32.
parameter:p_si type c radiobutton group rg.                "Sales Item
selection-screen: comment 35(15) for field p_si.
selection-screen: comment 60(20) for field p_posnr.
parameter:p_posnr like vbap-posnr MODIF ID gp6.            "Sales Document Item
SELECTION-SCREEN: END OF LINE.
SELECTION-SCREEN: skip.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the selection screen  code where for sales document i have assiged Modif id GP5 for Item Modif id GP6.  so when i check radio button p_sh ( header ) then sales document ( p_vbeln) shoudl be active for input .&lt;/P&gt;&lt;P&gt;if i check p_si (item) then both saleds document (p_vbeln) and p_posnr both have different group names i.e GP5 &amp;amp; GP6 should be active. i.e screen-inpu = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written the following code for header but for item i am unable to make screen-input = 1 for two different groups. how to do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; LOOP AT SCREEN.

    IF ( P_SH NE 'X' AND SCREEN-GROUP1 EQ 'GP5' ) OR
       ( P_SI NE 'X' AND SCREEN-GROUP1 EQ 'GP6' ).

      screen-input = 0.
      MODIFY SCREEN.
      ENDIF.
    ENDLOOP. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This code is working when i click header radio button but for when i click item radio button (p_si) only item field is active i am unable to make sales docuemnt active at same time. please help me in this regard. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sunil kairam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 07:37:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179636#M1373029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T07:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179637#M1373030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Sunil!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At first u should define first radio button with user-command key word to activate PAI (and of course PBO then) event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;parameter:p_sh type c radiobutton group rg user-command radio_fcode.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then just describe PBO event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen output.
  LOOP AT SCREEN.
    check screen-GROUP1 eq 'GP6'.
    if p_si eq 'X'.
      screen-input = 1.
    else.
      screen-input = 0.
    endif.
    MODIFY SCREEN.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have a good luck! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter Plenkov&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 08:03:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179637#M1373030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T08:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179638#M1373031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;removed...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 08:07:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179638#M1373031</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-10-01T08:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179639#M1373032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your quick response. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have declared the USER-COMMAND key word in my first radio button which is not showin in my earlier code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(30) text-002.
SELECTION-SCREEN: position 32.
Parameters: p_ct type c radiobutton group rg default 'X'
                                        USER-COMMAND mod.        "Central Texts
selection-screen: comment 35(15) for field p_ct.
selection-screen: comment 60(20) for field p_kunnr.
parameter:p_kunnr like kna1-kunnr MODIF ID gp1.                   "Customer
SELECTION-SCREEN: END OF LINE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i just want to know that can we make screen-input = 1 for 2 differnt group names i.e gp5 &amp;amp; gp6 by checking only one radio button. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard,&lt;/P&gt;&lt;P&gt;Sunil kairam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 08:07:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179639#M1373032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T08:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179640#M1373033</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 is what i did..Please see&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(30) text-005.
SELECTION-SCREEN: POSITION 32.
PARAMETER:p_sh TYPE c RADIOBUTTON GROUP rg USER-COMMAND ppt.                "Sales header
SELECTION-SCREEN: COMMENT 35(15) FOR FIELD p_sh.
SELECTION-SCREEN: COMMENT 60(20) FOR FIELD p_vbeln.
PARAMETER:p_vbeln LIKE vbak-vbeln MODIF ID gp5.            "Sales Document
SELECTION-SCREEN: END OF LINE.

SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN: POSITION 32.
PARAMETER:p_si TYPE c RADIOBUTTON GROUP rg.                "Sales Item
SELECTION-SCREEN: COMMENT 35(15) FOR FIELD p_si.
SELECTION-SCREEN: COMMENT 60(20) FOR FIELD p_posnr.
PARAMETER:p_posnr LIKE vbap-posnr."MODIF ID gp6.            "Sales Document Item
SELECTION-SCREEN: END OF LINE.
SELECTION-SCREEN: SKIP.

AT SELECTION-SCREEN OUTPUT.

  LOOP AT SCREEN.
    IF screen-group1 EQ 'GP5'.
    IF p_si EQ 'X'.
      screen-input = 1.
    ELSE.
      screen-input = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
  ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&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;nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 08:14:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179640#M1373033</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-10-01T08:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179641#M1373034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nagaraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if i try as what u mentioned above then if the radio buttion p_sh is checked the item field p_posnr will be in active. .i.e sceen-input will be 1 for item field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my requirement is like if i check the header radio button p_sh then only field p_vbeln should be as input field and item field p_posnr should not be input field. When i check the radio buttion p_si then both p_vbeln and p_posnr should be input field.  Thant's why i decaled two groups for each field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible?? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil kairam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 08:25:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179641#M1373034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T08:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179642#M1373035</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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(30) TEXT-005.
SELECTION-SCREEN: POSITION 32.
PARAMETER:P_SH TYPE C RADIOBUTTON GROUP RG USER-COMMAND CMD DEFAULT 'X'.                "Sales header
SELECTION-SCREEN: COMMENT 35(15) FOR FIELD P_SH.
SELECTION-SCREEN: COMMENT 60(20) FOR FIELD P_VBELN.
PARAMETER:P_VBELN LIKE VBAK-VBELN MODIF ID GP5.            "Sales Document
SELECTION-SCREEN: END OF LINE.

SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN: POSITION 32.
PARAMETER:P_SI TYPE C RADIOBUTTON GROUP RG.                "Sales Item
SELECTION-SCREEN: COMMENT 35(15) FOR FIELD P_SI.
SELECTION-SCREEN: COMMENT 60(20) FOR FIELD P_POSNR.
PARAMETER:P_POSNR LIKE VBAP-POSNR MODIF ID GP6.            "Sales Document Item
SELECTION-SCREEN: END OF LINE.
SELECTION-SCREEN: SKIP.


AT SELECTION-SCREEN OUTPUT.

  LOOP AT SCREEN.

    IF ( P_SH EQ 'X' AND SCREEN-GROUP1 EQ 'GP5' ) .
      SCREEN-INPUT = 1.
      MODIFY SCREEN.
    ELSEIF ( P_SH EQ 'X' AND SCREEN-GROUP1 EQ 'GP6' ).
      SCREEN-INPUT = 0.
      MODIFY SCREEN.
    ELSEIF ( P_SI EQ 'X' AND SCREEN-GROUP1 EQ 'GP6' ).
      SCREEN-INPUT = 1.
      MODIFY SCREEN.
    ELSEIF ( P_SI EQ 'X' AND SCREEN-GROUP1 EQ 'GP5' ).
      SCREEN-INPUT = 1.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 09:02:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179642#M1373035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T09:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179643#M1373036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI SUNIL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USE THIS ITS WORKING FINE &lt;/P&gt;&lt;P&gt;&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-005.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: position 32.&lt;/P&gt;&lt;P&gt;parameter:p_sh type c radiobutton group rg.                "Sales header&lt;/P&gt;&lt;P&gt;selection-screen: comment 35(15) for field p_sh.&lt;/P&gt;&lt;P&gt;selection-screen: comment 60(20) for field p_vbeln.&lt;/P&gt;&lt;P&gt;parameter:p_vbeln like vbak-vbeln MODIF ID gp5.            "Sales Document&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF LINE.&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: position 32.&lt;/P&gt;&lt;P&gt;parameter:p_si type c radiobutton group rg.                "Sales Item&lt;/P&gt;&lt;P&gt;selection-screen: comment 35(15) for field p_si.&lt;/P&gt;&lt;P&gt;selection-screen: comment 60(20) for field p_posnr.&lt;/P&gt;&lt;P&gt;parameter:p_posnr like vbap-posnr MODIF ID gp6.            "Sales Document Item&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: skip.&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;&lt;/P&gt;&lt;P&gt;    IF ( P_SH EQ 'X' AND SCREEN-GROUP1 EQ 'GP5' ) .&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ELSEIF ( P_SH EQ 'X' AND SCREEN-GROUP1 EQ 'GP6' ).&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ELSEIF ( P_SI EQ 'X' AND SCREEN-GROUP1 EQ 'GP6' AND SCREEN-GROUP1 EQ 'GP5').&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 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;&lt;/P&gt;&lt;P&gt;REGARDS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RAVI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 09:08:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179643#M1373036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T09:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179644#M1373037</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;The code specified by Peter is correct for your requirement..Please check the code .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 09:14:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179644#M1373037</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-10-01T09:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179645#M1373038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code u have written&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN OUTPUT.
 
  LOOP AT SCREEN.
 
    IF ( P_SH EQ 'X' AND SCREEN-GROUP1 EQ 'GP5' ) .
      SCREEN-INPUT = 1.
      MODIFY SCREEN.
    ELSEIF ( P_SH EQ 'X' AND SCREEN-GROUP1 EQ 'GP6' ).
      SCREEN-INPUT = 0.
      MODIFY SCREEN.
    ELSEIF ( P_SI EQ 'X' AND SCREEN-GROUP1 EQ 'GP6' ).
      SCREEN-INPUT = 1.
      MODIFY SCREEN.
    ELSEIF ( P_SI EQ 'X' AND SCREEN-GROUP1 EQ 'GP5' ).
      SCREEN-INPUT = 1.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is working fine...  but my concern is before i un check any of the radio buttion both fields input-screen should be 0.  Can you help me on this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil kairam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 10:00:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179645#M1373038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T10:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179646#M1373039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;removed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sunil kairam on Oct 1, 2009 3:44 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 10:12:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179646#M1373039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T10:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179647#M1373040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI SUNIL ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF YOU HAVE 2 RADIO BUTTONS I THINK  IT IS NOT POSSIBLE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ONE SHOULD BE DEFAULT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 10:13:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179647#M1373040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T10:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179648#M1373041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as both the radio buttons belong to the same group so we can check only one at a time..the requirement which you specified earlier should work fine with Peters code. I don't understand where you are facing the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else you can try other way .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create two radio buttons , one radio button having two fields header and item and the other radiobutton is having only header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Header radio btton is checked by default. so the header field (vbeln) is ready for input and at the same time the item radio button is uncehcked and both the fields are in display mode. when i click on item radio button the two fileds now ready for input and the header radio button field is disabled..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 10:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179648#M1373041</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-10-01T10:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179649#M1373042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have more than 2 radio buttions .  I am unable to paste code. &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; &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;Sunil kairam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 10:17:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179649#M1373042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T10:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179650#M1373043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI SUNIL ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK THIS &lt;/P&gt;&lt;P&gt;&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: POSITION 32.&lt;/P&gt;&lt;P&gt;PARAMETER:P_SH2 TYPE C RADIOBUTTON GROUP RG USER-COMMAND CMD DEFAULT 'X'.                "Sales Item&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 35(15) FOR FIELD P_SH2.           "Sales Document Item&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF LINE.&lt;/P&gt;&lt;P&gt;&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-005.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: POSITION 32.&lt;/P&gt;&lt;P&gt;PARAMETER:P_SH TYPE C RADIOBUTTON GROUP RG.                "Sales header&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 35(15) FOR FIELD P_SH.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 60(20) FOR FIELD P_VBELN.&lt;/P&gt;&lt;P&gt;PARAMETER:P_VBELN LIKE VBAK-VBELN MODIF ID GP5.            "Sales Document&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF LINE.&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: POSITION 32.&lt;/P&gt;&lt;P&gt;PARAMETER:P_SI TYPE C RADIOBUTTON GROUP RG.                "Sales Item&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 35(15) FOR FIELD P_SI.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 60(20) FOR FIELD P_POSNR.&lt;/P&gt;&lt;P&gt;PARAMETER:P_POSNR LIKE VBAP-POSNR MODIF ID GP6.            "Sales Document Item&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: SKIP.&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;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 ( P_SH EQ 'X' AND SCREEN-GROUP1 EQ 'GP5' ) .&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ELSEIF ( P_SH EQ 'X' AND SCREEN-GROUP1 EQ 'GP6' ).&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ELSEIF ( P_SI EQ 'X' AND SCREEN-GROUP1 EQ 'GP6' ).&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ELSEIF ( P_SI EQ 'X' AND SCREEN-GROUP1 EQ 'GP5' ).&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ELSEIF ( P_SH2 EQ 'X' AND SCREEN-GROUP1 EQ 'GP5' OR SCREEN-GROUP1 EQ 'GP6' ).&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 10:26:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179650#M1373043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T10:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179651#M1373044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nagraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The requirement is like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selection-screen code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(30) text-002.
SELECTION-SCREEN: position 32.
Parameters: p_ct type c radiobutton group rg default 'X'
                                        USER-COMMAND mod.        "Central Texts
selection-screen: comment 35(15) for field p_ct.
selection-screen: comment 60(20) for field p_kunnr.
parameter:p_kunnr like kna1-kunnr MODIF ID gp1.                   "Customer
SELECTION-SCREEN: END OF LINE.

SELECTION-SCREEN: begin of line.
SELECTION-SCREEN: position 32.
parameters: p_cp type c radiobutton group rg.                  "Contact Person
selection-screen: comment 35(15) for field p_cp.
SELECTION-SCREEN: end of line.

SELECTION-SCREEN: begin of line.
SELECTION-SCREEN: position 32.
parameters: p_sd type c radiobutton group rg.                 "Sales &amp;amp; Distribution
selection-screen: comment 35(25) for field p_sd.
SELECTION-SCREEN: end of line.
SELECTION-SCREEN: skip.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(30) text-005.
SELECTION-SCREEN: position 32.
parameter:p_sh type c radiobutton group rg.                "Sales header
selection-screen: comment 35(15) for field p_sh.
selection-screen: comment 60(20) for field p_vbeln.
parameter:p_vbeln like vbak-vbeln MODIF ID gp5.            "Sales Document
SELECTION-SCREEN: END OF LINE.

SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN: position 32.
parameter:p_si type c radiobutton group rg.                "Sales Item
selection-screen: comment 35(15) for field p_si.
selection-screen: comment 60(20) for field p_posnr.
parameter:p_posnr like vbap-posnr MODIF ID gp6.            "Sales Document Item
SELECTION-SCREEN: END OF LINE.
SELECTION-SCREEN: skip.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here  first 1 have 3 radio buttions if any one is check the field p_kunnr should be input ready and fields p_vbeln and p_posnr should be not ready for input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i check the radio button p_sh (header) only p_vbeln should be input ready and fields p_kunnr and p_posnr should be disabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i check radio buttion p_si (item) field p_vbeln &amp;amp; p_posnr should be ready for input and p_kunnr should be not be active.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mean while in b/w i have differnt radio buttions but i am unable to paste code so i am taking example for this two only....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it is clear..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil kairam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 10:36:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179651#M1373044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T10:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179652#M1373045</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;Check this piece of code changed a bit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS : p_ct  RADIOBUTTON GROUP grp .
SELECT-OPTIONS : s_kunnr FOR kna1-kunnr, 
PARAMETERS : p_sh RADIOBUTTON GROUP grp.
SELECT-OPTIONS : s_vbeln  FOR vbak-vbeln,                 
PARAMETERS : p_si  RADIOBUTTON GROUP grp.
SELECT-OPTIONS : s_vbeln1  FOR vbak-vbeln,
                               s_posnr   for vbak-posnr.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

IF p_ct  IS NOT INITIAL .

    LOOP AT SCREEN.

      CASE screen-name.

        WHEN 'S_KUNNR-LOW'.
          screen-input = 1.
          MODIFY SCREEN.
         WHEN 'S_KUNNR-HIGH'.
          screen-input = 1.
          MODIFY SCREEN.

           WHEN 'S_VBELN-LOW'.
          screen-input = 0.
          MODIFY SCREEN.

        WHEN 'S_VBELN-HIGH'.
          screen-input = 0.
          MODIFY SCREEN.

        WHEN 'S_VBELN1-LOW'.
          screen-input = 0.
          MODIFY SCREEN.

        WHEN 'S_VBELN1-HIGH'.
          screen-input = 0.
          MODIFY SCREEN.


        WHEN 'S_POSNR-LOW'.
          screen-input = 0.
          MODIFY SCREEN.

        WHEN 'S_POSNR-HIGH'.
          screen-input = 0.
          MODIFY SCREEN.

    
      ENDCASE.

    ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  ELSEIF p_sh IS NOT INITIAL.

    LOOP AT SCREEN.

      CASE screen-name.

        WHEN 'S_KUNNR-LOW'.
          screen-input = 0.
          MODIFY SCREEN.
         WHEN 'S_KUNNR-HIGH'.
          screen-input = 0.
          MODIFY SCREEN.

           WHEN 'S_VBELN-LOW'.
          screen-input = 1.
          MODIFY SCREEN.

        WHEN 'S_VBELN-HIGH'.
          screen-input = 1.
          MODIFY SCREEN.

        WHEN 'S_VBELN1-LOW'.
          screen-input = 0.
          MODIFY SCREEN.

        WHEN 'S_VBELN1-HIGH'.
          screen-input = 0.
          MODIFY SCREEN.


        WHEN 'S_POSNR-LOW'.
          screen-input = 0.
          MODIFY SCREEN.

        WHEN 'S_POSNR-HIGH'.
          screen-input = 0.
          MODIFY SCREEN.

    
      ENDCASE.

    ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now one more  ELSEIF p_si  IS NOT INITIAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now make s_vbeln1 and s_posnr as input 1 and rest others as input 0.&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;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 10:51:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179652#M1373045</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-10-01T10:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179653#M1373046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Nagraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working fine now.. thanks for the solution.&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;Sunil kairam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 11:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179653#M1373046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T11:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: At-selection-screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179654#M1373047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Here  first 1 have 3 radio buttions if any one is check the field p_kunnr should be input ready and fields p_vbeln and p_posnr should be not ready for input.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; when i check the radio button p_sh (header) only p_vbeln should be input ready and fields p_kunnr and p_posnr should be disabled.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; when i check radio buttion p_si (item) field p_vbeln &amp;amp; p_posnr should be ready for input and p_kunnr should be not be activ&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As i understand, u mean this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen output.
  LOOP AT SCREEN.
    screen-input = 0.
    case screen-group1.
      when 'GP1'.
        if p_ct eq 'X' or p_cp eq 'X' or p_sd eq 'X'.
          screen-input = 1.
        endif.
      when 'GP5'.
        if p_si eq 'X' or p_sh eq 'X'.
          screen-input = 1.
        endif.
      when 'GP6'.
        if p_si eq 'X'.
          screen-input = 1.
        endif.
      when others.
        continue.
    endcase.
    MODIFY SCREEN.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 11:20:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-modification/m-p/6179654#M1373047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T11:20:56Z</dc:date>
    </item>
  </channel>
</rss>

