<?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: Radi buttons in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563720#M254812</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashant,&lt;/P&gt;&lt;P&gt;I did exactly u suggested but surprisingly it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jeetu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Sep 2006 04:17:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-21T04:17:30Z</dc:date>
    <item>
      <title>Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563715#M254807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have two radio buttons.I have a requirement that if one radio button is clicked some input parameters should be disabled.How to achieve that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jeetu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:02:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563715#M254807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T04:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563716#M254808</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;PARAMETERS P0 RADIOBUTTON GROUP RADI. &lt;/P&gt;&lt;P&gt;PARAMETERS P1 RADIOBUTTON GROUP RADI. &lt;/P&gt;&lt;P&gt;Parameters p_matnr type mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT. &lt;/P&gt;&lt;P&gt;if po = `X` or&lt;/P&gt;&lt;P&gt;   p1 = `X`.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = `P_MATNR`.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = 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;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:12:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563716#M254808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T04:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563717#M254809</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 use this logic..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: r1 RADIOBUTTON GROUP rad1  USER-COMMAND cli DEFAULT 'X',&lt;/P&gt;&lt;P&gt;            r2 RADIOBUTTON GROUP rad1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_ch1(8) TYPE c MODIF ID sc1,&lt;/P&gt;&lt;P&gt;            p_ch2(8) TYPE c MODIF ID sc2.&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;  IF r2 = 'X'.&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-group1 = 'SC1' &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;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&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 = '0'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDLOOP.&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;Hope this helps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;SImha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:14:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563717#M254809</guid>
      <dc:creator>Simha_</dc:creator>
      <dc:date>2006-09-21T04:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563718#M254810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You only need add this statement: USER-COMMAND, after Radio Button. And add statement at AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

REPORT  Z_JRQ034R                               .

*-----------------------------------------------------------------------
* S.E.L.L.E.C.T.I.O.N.  .S.C.R.E.E.N.
*-----------------------------------------------------------------------
SELECTION-SCREEN BEGIN OF BLOCK BL03 WITH FRAME TITLE TEXT-S30.
  SELECTION-SCREEN BEGIN OF LINE.
    PARAMETER RB_STD RADIOBUTTON GROUP GRP1 USER-COMMAND RB1
                     DEFAULT 'X'.
    SELECTION-SCREEN COMMENT (25) TEXT-S31.
  SELECTION-SCREEN END OF LINE.
  SELECTION-SCREEN BEGIN OF LINE.
    PARAMETER RB_ALV RADIOBUTTON GROUP GRP1.
    SELECTION-SCREEN COMMENT (5) TEXT-S32.
  SELECTION-SCREEN END OF LINE.
  SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN POSITION 4.
    SELECTION-SCREEN COMMENT (15) TEXT-S33.
    PARAMETER P_VAR LIKE DISVARIANT-VARIANT.
  SELECTION-SCREEN END OF LINE.
  SELECTION-SCREEN BEGIN OF LINE.
    PARAMETER RB_EMAIL RADIOBUTTON GROUP GRP1.
    SELECTION-SCREEN COMMENT (15) TEXT-S34.
  SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK BL03.

*-----------------------------------------------------------------------
* A.T.  .S.E.L.L.E.C.T.I.O.N.  .S.C.R.E.E.N.
*-----------------------------------------------------------------------
AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
      IF RB_ALV = 'X'.
         IF SCREEN-NAME CS 'P_VAR'.
           SCREEN-INPUT = 1.
           MODIFY SCREEN.
         ENDIF.
      ELSE.
         IF SCREEN-NAME CS 'P_VAR'.
           SCREEN-INPUT = 0.
           MODIFY SCREEN.
         ENDIF.
      ENDIF.
    ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:15:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563718#M254810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T04:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563719#M254811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeetu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; pls chk this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report ZCHA.
 
 
parameters: p_rad1 radiobutton group grp1 default 'X'
                         user-command check.
parameters: p_rad2 radiobutton group grp1 .
 
parameters: p_fld1(10) type c.
parameters: p_fld2(10) type c.
 
at selection-screen output.
  
loop at screen.
 
if p_rad1 = 'X' or 
   p_rad2 = 'X'.
if screen-name = 'P_FLD1' or
   screen-name = 'P_FLD2'
   screen-input = '0'.
endif.
endif.
  
modify screen.
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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:17:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563719#M254811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T04:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563720#M254812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashant,&lt;/P&gt;&lt;P&gt;I did exactly u suggested but surprisingly it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jeetu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:17:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563720#M254812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T04:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563721#M254813</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;when first radiobutton is selected, v_matnr will be disabled otherwise, if second radiobutton is selected, v_matnr will be enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
parameters : p_rad1  radiobutton group g1 user-command ABCD,
             p_rad2  radiobutton group g1,
             v_matnr like mara-matnr.

data: v_data type c value 'X'.

at selection-screen output.

 if v_data = 'X'.
   loop at screen.
     if screen-name = 'V_MATNR'.
       screen-input = 0.
       modify screen.
     endif.
   endloop.
 else.
   loop at screen.
     if screen-name = 'V_MATNR'.
       screen-input = 1.
       modify screen.
     endif.
   endloop.
 endif.
at selection-screen.

case sy-ucomm.
  when 'ABCD'.
   if p_rad1 = 'X'.
     v_data = 'X'.
   else.
     v_data = ' '.
   endif.
endcase.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:23:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563721#M254813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T04:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563722#M254814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Parameters: rd1 RADIOBUTTON group g1 default 'X' user-command ch ,
            kishan1(15)  modif id ID1,
            kishan2(15)  modif id ID2,
            rd2 RADIOBUTTON group g1 ,
            kishan3(15)  modif id ID3,
            kishan4(15)  modif id ID4.
 
 
 
AT SELECTION-SCREEN.
check sy-ucomm = 'CH'.
 
AT SELECTION-SCREEN output.
IF rd2 = 'X'.
 
LOOP AT SCREEN.
IF screen-group1 = 'ID1' or screen-group1 = 'ID2'.
screen-input = '0'.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
 
ENDIF.
IF RD1 = 'X'.
LOOP AT SCREEN.
IF screen-group1 = 'ID3' or screen-group1 = 'ID4'.
screen-input = '0'.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
 
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:25:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563722#M254814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T04:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563723#M254815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Chandrasekhar,&lt;/P&gt;&lt;P&gt;It is not working because both my parameters are OBLIGATORY type and want to make disable both the parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u please help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jeetu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:32:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563723#M254815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T04:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563724#M254816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can used &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-NAME = '?'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = 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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:37:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563724#M254816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T04:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563725#M254817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;just copy and  paste....

Parameters: rd1 RADIOBUTTON group g1 default 'X' user-command ch ,
            kishan1(15)  modif id ID1,
            rd2 RADIOBUTTON group g1 ,
            kishan3(15)  modif id ID3.



AT SELECTION-SCREEN.
check sy-ucomm = 'CH'.

AT SELECTION-SCREEN output.
IF rd2 = 'X'.

LOOP AT SCREEN.
IF screen-group1 = 'ID1' .
screen-input = '0'.
ENDIF.
MODIFY SCREEN.
ENDLOOP.

ENDIF.
IF RD1 = 'X'.
LOOP AT SCREEN.
IF screen-group1 = 'ID3' .
screen-input = '0'.
ENDIF.
MODIFY SCREEN.
ENDLOOP.

ENDIF.

if rd1 = 'X' AND kishan1 = ''.
message w000(001) with ' enter the parameter value'.
endif.
if rd2 = 'X' AND kishan3 = ''.
message w000(002) with 'enter the parameter value'.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:42:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563725#M254817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T04:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563726#M254818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeetu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I had modified my code in first post , can u try that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:46:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563726#M254818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T04:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563727#M254819</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 Do like This&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF BLOCK ss_note WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS: fpareaid TYPE /sapapo/prom_keyf-pareaid MODIF ID g1, "  default 'DP_DFPA' ,&lt;/P&gt;&lt;P&gt;            p_vsum RADIOBUTTON GROUP g2 , " volume summary&lt;/P&gt;&lt;P&gt;            p_vsum1 RADIOBUTTON GROUP g2 . " volume summary&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF BLOCK ss_note.&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;if p_vsum = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    CHECK screen-group1 = 'G1'.&lt;/P&gt;&lt;P&gt;    screen-input = '0'.&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;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ahasan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 05:08:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563727#M254819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T05:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563728#M254820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the event 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 RAD1 EQ 'X'.&lt;/P&gt;&lt;P&gt;    IF SCREEN-NAME EQ F1.&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    IF SCREEN-NAME EQ F2.&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 0.&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;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs,&lt;/P&gt;&lt;P&gt;Venkat Ramanan N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 06:57:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563728#M254820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T06:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: Radi buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563729#M254821</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;Pls check out the following piece of code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters    : p_down  radiobutton group g1 default 'X'&lt;/P&gt;&lt;P&gt;                        user-command act,&lt;/P&gt;&lt;P&gt;                p_up    radiobutton group g1,&lt;/P&gt;&lt;P&gt;                p_pathd  type localfile default&lt;/P&gt;&lt;P&gt;                         'C:\Documents and  &lt;/P&gt;&lt;P&gt;                      Settings\gen\Desktop\Untitled.XLS',&lt;/P&gt;&lt;P&gt;                p_pathu  type localfile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;if p_down = 'X'.&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;    if  ( screen-name = 'P_PATHU' ) or&lt;/P&gt;&lt;P&gt;        ( screen-name = '%_P_PATHU_%_APP_%-TEXT' ).&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;    if ( screen-name = 'P_PATHD' ) or&lt;/P&gt;&lt;P&gt;       ( screen-name = '%_P_PATHD_%_APP_%-TEXT' ).&lt;/P&gt;&lt;P&gt;       screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;       screen-active    = '1'.&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;&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;elseif p_up = 'X'.&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;    if ( screen-name = 'P_PATHD' ) or&lt;/P&gt;&lt;P&gt;       ( screen-name = '%_P_PATHD_%_APP_%-TEXT' ).&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;    if  ( screen-name = 'P_PATHU' ) or&lt;/P&gt;&lt;P&gt;        ( screen-name = '%_P_PATHU_%_APP_%-TEXT' ).&lt;/P&gt;&lt;P&gt;       screen-invisible = '0'.&lt;/P&gt;&lt;P&gt;       screen-active    = '1'.&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;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you select p_down radio button, parameter p_pathd will be displayed and p_pathu will be in invisible mode and if you select p_up radio button it will be vice versa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 07:10:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radi-buttons/m-p/1563729#M254821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T07:10:26Z</dc:date>
    </item>
  </channel>
</rss>

