<?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 issue using radio button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-using-radio-button/m-p/1828469#M353286</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first of all i would suggest u to handle the code with a click of a radio button .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This minimises the confusion .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;If r1 = 'X'.

endif.

If r2 = 'X'.

endif.
If r3 = 'X'.

endif.
If r4 = 'X'.

endif.

2.

If r1 = 'X'.

endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Product validation at selection screen&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;IF s_prod IS INITIAL.&amp;lt;/b&amp;gt;        "prone to bypass&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE e216(/sapapo/rrp).&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Location validation at selection screen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IF p_loc IS INITIAL.&lt;/P&gt;&lt;P&gt;MESSAGE e217(/sapapo/rrp).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of this &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;IF s_prod IS INITIAL&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify this as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF &amp;lt;b&amp;gt;s_prod[]&amp;lt;/b&amp;gt;  IS INITIAL. cause select options is a internal table by itself and &lt;/P&gt;&lt;P&gt;make use of &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;multi selections like &lt;/P&gt;&lt;P&gt;3.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF s_prod[]  IS INITIAL or s_prod[]    eq ' '  
if  p_loc is initial  or p_loc eq  ' '

message .

end if .
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;deal the s_prod[]  as 

s_prod-low  "lower value 
s-prod-high. " higher value&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &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>Fri, 02 Feb 2007 13:56:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-02T13:56:56Z</dc:date>
    <item>
      <title>Selection screen issue using radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-using-radio-button/m-p/1828467#M353284</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;&amp;lt;b&amp;gt;My selection screen is as follows:&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK global WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-002.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_rd1 RADIOBUTTON GROUP r1 DEFAULT 'X' USER-COMMAND cmd1,&lt;/P&gt;&lt;P&gt;             p_rd2 RADIOBUTTON GROUP r1.&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-003.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_rd3 RADIOBUTTON GROUP r2 DEFAULT 'X' USER-COMMAND r MODIF ID sc3.&lt;/P&gt;&lt;P&gt;*SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_prod FOR /sapapo/rrpio-matnr MODIF ID sc1,&lt;/P&gt;&lt;P&gt;                s_plan FOR /sapapo/planner-planner MODIF ID sc1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;               p_loc FOR /sapapo/rrpio-locno MODIF ID sc1 .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;PARAMETERS : p_loc TYPE /sapapo/rrpio-locno MODIF ID sc1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN ULINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-004.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_rd4 RADIOBUTTON GROUP r2 MODIF ID sc4.&lt;/P&gt;&lt;P&gt;*SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_ordnum FOR /sapapo/rrpio-delnr MODIF ID sc2 .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK global.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-004.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS :&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;              p_plnver TYPE /sapapo/rrpio-simid,&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;               p_start TYPE /sapapo/cdps_rept_evdate_start ,&lt;/P&gt;&lt;P&gt;               p_end TYPE /sapapo/cdps_rept_evdate_end ,&lt;/P&gt;&lt;P&gt;               p_ver TYPE /sapapo/version ,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;              p_ver type BAPI10504STOCKLIST2-version,&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;              p_bcstat TYPE bapi10504stocklist2-atpcat,&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;               p_timepf TYPE /sapapo/timeprf-timepro_id.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;              p_stktyp TYPE bapi10504stocklist2-stock_type.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_reqdat FOR /sapapo/rrpio-rqdat.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b4.&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;*PERFORM f_VALIDATE_MANDATORY_FIELDS.&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;      IF screen-input = 1.&lt;/P&gt;&lt;P&gt;        IF p_rd1 = 'X' AND p_rd3 = 'X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Location validation at selection screen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          IF p_loc IS INITIAL.&lt;/P&gt;&lt;P&gt;            MESSAGE e217(/sapapo/rrp).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          ELSE.&lt;/P&gt;&lt;P&gt;            CALL FUNCTION '/SAPAPO/DM_LOCNO_GET_LOCID'&lt;/P&gt;&lt;P&gt;              EXPORTING&lt;/P&gt;&lt;P&gt;                iv_locno           = p_loc&lt;/P&gt;&lt;P&gt;              IMPORTING&lt;/P&gt;&lt;P&gt;                ev_locid           = lv_locid&lt;/P&gt;&lt;P&gt;              EXCEPTIONS&lt;/P&gt;&lt;P&gt;                location_not_found = 1&lt;/P&gt;&lt;P&gt;                OTHERS             = 2.&lt;/P&gt;&lt;P&gt;            IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;              CALL FUNCTION '/SAPAPO/OM_MESSAGES_SY_STORE'.&lt;/P&gt;&lt;P&gt;              CALL FUNCTION '/SAPAPO/OM_MESSAGES_SHOW'.&lt;/P&gt;&lt;P&gt;            ENDIF.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;        ELSEIF p_rd2 = 'X' AND p_rd3 = 'X'.&lt;/P&gt;&lt;P&gt;*Product validation at selection screen&lt;/P&gt;&lt;P&gt;          IF s_prod IS INITIAL.&lt;/P&gt;&lt;P&gt;            MESSAGE e216(/sapapo/rrp).&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Location validation at selection screen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          IF p_loc IS INITIAL.&lt;/P&gt;&lt;P&gt;            MESSAGE e217(/sapapo/rrp).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          ELSE.&lt;/P&gt;&lt;P&gt;            CALL FUNCTION '/SAPAPO/DM_LOCNO_GET_LOCID'&lt;/P&gt;&lt;P&gt;              EXPORTING&lt;/P&gt;&lt;P&gt;                iv_locno           = p_loc&lt;/P&gt;&lt;P&gt;              IMPORTING&lt;/P&gt;&lt;P&gt;                ev_locid           = lv_locid&lt;/P&gt;&lt;P&gt;              EXCEPTIONS&lt;/P&gt;&lt;P&gt;                location_not_found = 1&lt;/P&gt;&lt;P&gt;                OTHERS             = 2.&lt;/P&gt;&lt;P&gt;            IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;              CALL FUNCTION '/SAPAPO/OM_MESSAGES_SY_STORE'.&lt;/P&gt;&lt;P&gt;              CALL FUNCTION '/SAPAPO/OM_MESSAGES_SHOW'.&lt;/P&gt;&lt;P&gt;            ENDIF.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;        ENDIF.&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;&lt;/P&gt;&lt;P&gt;  IF sy-ucomm = 'R'.&lt;/P&gt;&lt;P&gt;    IF p_rd3 = 'X'.&lt;/P&gt;&lt;P&gt;      flag = '1'.&lt;/P&gt;&lt;P&gt;      flag1 = '0'.&lt;/P&gt;&lt;P&gt;    ELSEIF p_rd4 = 'X'.&lt;/P&gt;&lt;P&gt;      flag = '0'.&lt;/P&gt;&lt;P&gt;      flag1 = '1'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&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;*AT SELECTION-SCREEN ON RADIOBUTTON GROUP R1.&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-input = flag.&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;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-group1 = 'SC2'.&lt;/P&gt;&lt;P&gt;      screen-input = flag1.&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;&amp;lt;b&amp;gt;The problem:&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;There are 4 radio buttons in total. The requirement is, when I select the radio button p_rd1 it should validate only the s_prod field mentioned under the radio button p_rd3. When I select the radio button p_rd2 it should validate both the fields s_prod  and p_loc mentioned under the radio button p_rd4. The validation is happening correctly but when I am switching over from one radio button to another, there is a message to "Enter Product" / Enter location. This is because I have validated for the logic where the field s_prod and p_loc are blank. Also  when I click the "Multiple selection button" on the selection field s_prod, it shows a message " Enter Product" as I have not entered any data there. &lt;/P&gt;&lt;P&gt;Thus, I would like to know how to supress this error message if that field remains blank using the same logic. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope to hear from you soon.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Debaprasad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2007 13:17:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-using-radio-button/m-p/1828467#M353284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-02T13:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen issue using radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-using-radio-button/m-p/1828468#M353285</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;&amp;lt;b&amp;gt;selection-screen begin of block RAD with frame.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : R1 RADIOBUTTON GROUP RG USER-COMMAND R DEFAULT 'X'.&lt;/P&gt;&lt;P&gt;PARAMETERS : R2 RADIOBUTTON GROUP RG .&lt;/P&gt;&lt;P&gt;PARAMETERS : R3 RADIOBUTTON GROUP RG .&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;selection-screen end of block RAD with frame.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------------------------------" /&gt;&lt;P&gt;selection-screen begin of block b1 with frame.&lt;/P&gt;&lt;P&gt;parameters : a(10) type c modif id abc.&lt;/P&gt;&lt;P&gt;parameters : b(10) type c modif id abc.&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;selection-screen begin of block b2 with frame.&lt;/P&gt;&lt;P&gt;parameters : c(40) type c modif id def.&lt;/P&gt;&lt;P&gt;parameters : d(20) type c modif id def.&lt;/P&gt;&lt;P&gt;selection-screen end of block b2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b3 with frame.&lt;/P&gt;&lt;P&gt;parameters : e(40) type c modif id ghi.&lt;/P&gt;&lt;P&gt;parameters : f(20) type c modif id ghi.&lt;/P&gt;&lt;P&gt;selection-screen end of block b3.&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;HR originaltext="--------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT Selection screen on radio button Group RG.&lt;/P&gt;&lt;P&gt;IF R1 = 'X'.&lt;/P&gt;&lt;P&gt;if Field is initial.&lt;/P&gt;&lt;P&gt; message 'Please enter the field'&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write the above logic for all the fields&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2007 13:50:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-using-radio-button/m-p/1828468#M353285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-02T13:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen issue using radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-using-radio-button/m-p/1828469#M353286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first of all i would suggest u to handle the code with a click of a radio button .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This minimises the confusion .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;If r1 = 'X'.

endif.

If r2 = 'X'.

endif.
If r3 = 'X'.

endif.
If r4 = 'X'.

endif.

2.

If r1 = 'X'.

endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Product validation at selection screen&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;IF s_prod IS INITIAL.&amp;lt;/b&amp;gt;        "prone to bypass&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE e216(/sapapo/rrp).&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Location validation at selection screen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IF p_loc IS INITIAL.&lt;/P&gt;&lt;P&gt;MESSAGE e217(/sapapo/rrp).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of this &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;IF s_prod IS INITIAL&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify this as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF &amp;lt;b&amp;gt;s_prod[]&amp;lt;/b&amp;gt;  IS INITIAL. cause select options is a internal table by itself and &lt;/P&gt;&lt;P&gt;make use of &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;multi selections like &lt;/P&gt;&lt;P&gt;3.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF s_prod[]  IS INITIAL or s_prod[]    eq ' '  
if  p_loc is initial  or p_loc eq  ' '

message .

end if .
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;deal the s_prod[]  as 

s_prod-low  "lower value 
s-prod-high. " higher value&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &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>Fri, 02 Feb 2007 13:56:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-using-radio-button/m-p/1828469#M353286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-02T13:56:56Z</dc:date>
    </item>
  </channel>
</rss>

