<?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: Disabling Check Box in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311115#M793064</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;Refer to the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 100 title title.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title text-t01.&lt;/P&gt;&lt;P&gt;parameter:rad1 radiobutton group rad user-command frad1 default 'X',&lt;/P&gt;&lt;P&gt;          rad2 radiobutton group rad .&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-t02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter: mtr as checkbox modif id g3 user-command chk1,&lt;/P&gt;&lt;P&gt;           p_matnr type eban-matnr modif id g1,&lt;/P&gt;&lt;P&gt;           sloc as checkbox modif id g3 user-command chk2,&lt;/P&gt;&lt;P&gt;           str_loc type eban-lgort modif id g4.&lt;/P&gt;&lt;P&gt;&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 title text-t03.&lt;/P&gt;&lt;P&gt;select-options: matnr1 for eban-matnr modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen end of block b3.&lt;/P&gt;&lt;P&gt;selection-screen pushbutton /20(10) name user-command ucom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen end of screen 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;name = 'FETCH'.&lt;/P&gt;&lt;P&gt;title = 'Test Report'.&lt;/P&gt;&lt;P&gt;call selection-screen '100'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools slis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;declaration of internal tables and work areas to be used&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it_pr occurs 0,&lt;/P&gt;&lt;P&gt;      banfn type eban-banfn,&lt;/P&gt;&lt;P&gt;      bnfpo type eban-bnfpo,&lt;/P&gt;&lt;P&gt;      loekz type eban-loekz,&lt;/P&gt;&lt;P&gt;      statu type eban-statu,&lt;/P&gt;&lt;P&gt;      ekgrp type eban-ekgrp,&lt;/P&gt;&lt;P&gt;      matnr type eban-matnr,&lt;/P&gt;&lt;P&gt;      werks type eban-werks,&lt;/P&gt;&lt;P&gt;      lgort type eban-lgort,&lt;/P&gt;&lt;P&gt;      preis type eban-preis,&lt;/P&gt;&lt;P&gt;      peinh type eban-peinh,&lt;/P&gt;&lt;P&gt;      end of it_pr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it_mat occurs 0,&lt;/P&gt;&lt;P&gt;      matnr type eban-matnr,&lt;/P&gt;&lt;P&gt;      end of it_mat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*DATA:BEGIN OF ITAB1 OCCURS 0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: l_answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_fieldcat type slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      wa_fieldcat like line of it_fieldcat,&lt;/P&gt;&lt;P&gt;      it_event type slis_t_event,&lt;/P&gt;&lt;P&gt;      wa_event type slis_alv_event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;declaration of variables to be used&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: r_ucomm type sy-ucomm,&lt;/P&gt;&lt;P&gt;      mat_no type eban-matnr,&lt;/P&gt;&lt;P&gt;      len type i value 1,&lt;/P&gt;&lt;P&gt;      count type i value is initial,&lt;/P&gt;&lt;P&gt;      iflag type i value is initial,&lt;/P&gt;&lt;P&gt;      iflag1 type i value 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data :pr_id type sy-repid,&lt;/P&gt;&lt;P&gt;rt_extab type slis_t_extab.&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 rad1 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-group1 = 'G1' or screen-group1 = 'G4'.&lt;/P&gt;&lt;P&gt;        screen-active = '1'.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;      elseif screen-group1 = 'G2'.&lt;/P&gt;&lt;P&gt;        screen-active = '0'.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      modify screen.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  elseif rad2 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-group1 = 'G1'  or screen-group1 = 'G4' or screen-group1 = 'G3' or screen-group1 = 'G5'.&lt;/P&gt;&lt;P&gt;        screen-active = '0'.&lt;/P&gt;&lt;P&gt;      elseif screen-group1 = 'G2'.&lt;/P&gt;&lt;P&gt;        screen-active = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      modify screen.&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 mtr = 'X'.&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;        screen-input = 1 .&lt;/P&gt;&lt;P&gt;&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;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sloc = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-group1 = 'G4'.&lt;/P&gt;&lt;P&gt;        screen-input = 1 .&lt;/P&gt;&lt;P&gt;&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;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will surely sort your prob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jan 2008 11:59:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-31T11:59:07Z</dc:date>
    <item>
      <title>Disabling Check Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311113#M793062</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;               I have Selection screen where in 1st Block I have 3 Radio Button &amp;amp; respective input fields. In 2nd Block I have 2 Radio button &amp;amp; Respective Check Boxes. I used Loop At Screen for Disabling Input Fields in 1st Block whose Radio Button is not clicked. I need to do the same Functionality for 2nd Block so that I can Disable Check Box whose Radio Button is not Clicked.&lt;/P&gt;&lt;P&gt;I have allready writen  &lt;STRONG&gt;USER-COMMAND ABC&lt;/STRONG&gt; in 1sr Block.&lt;/P&gt;&lt;P&gt;And it wont allow me to write another &lt;STRONG&gt;USER-COMMAND&lt;/STRONG&gt; for 2nd block. What Would I Do.&lt;/P&gt;&lt;P&gt;Plz Help. Urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Khan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 11:48:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311113#M793062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T11:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling Check Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311114#M793063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ITS SIMPLE U JUST NEED TO ASSIGN SEPARATE GROUP TO YOUR CHECKBOX BY MODIF-ID.&lt;/P&gt;&lt;P&gt;then oyu can change attributes to this group using &lt;/P&gt;&lt;P&gt;loop at screen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;keep rockin&lt;/P&gt;&lt;P&gt;vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 11:58:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311114#M793063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T11:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling Check Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311115#M793064</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;Refer to the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 100 title title.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title text-t01.&lt;/P&gt;&lt;P&gt;parameter:rad1 radiobutton group rad user-command frad1 default 'X',&lt;/P&gt;&lt;P&gt;          rad2 radiobutton group rad .&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-t02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter: mtr as checkbox modif id g3 user-command chk1,&lt;/P&gt;&lt;P&gt;           p_matnr type eban-matnr modif id g1,&lt;/P&gt;&lt;P&gt;           sloc as checkbox modif id g3 user-command chk2,&lt;/P&gt;&lt;P&gt;           str_loc type eban-lgort modif id g4.&lt;/P&gt;&lt;P&gt;&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 title text-t03.&lt;/P&gt;&lt;P&gt;select-options: matnr1 for eban-matnr modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen end of block b3.&lt;/P&gt;&lt;P&gt;selection-screen pushbutton /20(10) name user-command ucom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen end of screen 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;name = 'FETCH'.&lt;/P&gt;&lt;P&gt;title = 'Test Report'.&lt;/P&gt;&lt;P&gt;call selection-screen '100'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools slis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;declaration of internal tables and work areas to be used&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it_pr occurs 0,&lt;/P&gt;&lt;P&gt;      banfn type eban-banfn,&lt;/P&gt;&lt;P&gt;      bnfpo type eban-bnfpo,&lt;/P&gt;&lt;P&gt;      loekz type eban-loekz,&lt;/P&gt;&lt;P&gt;      statu type eban-statu,&lt;/P&gt;&lt;P&gt;      ekgrp type eban-ekgrp,&lt;/P&gt;&lt;P&gt;      matnr type eban-matnr,&lt;/P&gt;&lt;P&gt;      werks type eban-werks,&lt;/P&gt;&lt;P&gt;      lgort type eban-lgort,&lt;/P&gt;&lt;P&gt;      preis type eban-preis,&lt;/P&gt;&lt;P&gt;      peinh type eban-peinh,&lt;/P&gt;&lt;P&gt;      end of it_pr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it_mat occurs 0,&lt;/P&gt;&lt;P&gt;      matnr type eban-matnr,&lt;/P&gt;&lt;P&gt;      end of it_mat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*DATA:BEGIN OF ITAB1 OCCURS 0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: l_answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_fieldcat type slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      wa_fieldcat like line of it_fieldcat,&lt;/P&gt;&lt;P&gt;      it_event type slis_t_event,&lt;/P&gt;&lt;P&gt;      wa_event type slis_alv_event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;declaration of variables to be used&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: r_ucomm type sy-ucomm,&lt;/P&gt;&lt;P&gt;      mat_no type eban-matnr,&lt;/P&gt;&lt;P&gt;      len type i value 1,&lt;/P&gt;&lt;P&gt;      count type i value is initial,&lt;/P&gt;&lt;P&gt;      iflag type i value is initial,&lt;/P&gt;&lt;P&gt;      iflag1 type i value 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data :pr_id type sy-repid,&lt;/P&gt;&lt;P&gt;rt_extab type slis_t_extab.&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 rad1 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-group1 = 'G1' or screen-group1 = 'G4'.&lt;/P&gt;&lt;P&gt;        screen-active = '1'.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;      elseif screen-group1 = 'G2'.&lt;/P&gt;&lt;P&gt;        screen-active = '0'.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      modify screen.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  elseif rad2 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-group1 = 'G1'  or screen-group1 = 'G4' or screen-group1 = 'G3' or screen-group1 = 'G5'.&lt;/P&gt;&lt;P&gt;        screen-active = '0'.&lt;/P&gt;&lt;P&gt;      elseif screen-group1 = 'G2'.&lt;/P&gt;&lt;P&gt;        screen-active = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      modify screen.&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 mtr = 'X'.&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;        screen-input = 1 .&lt;/P&gt;&lt;P&gt;&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;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sloc = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-group1 = 'G4'.&lt;/P&gt;&lt;P&gt;        screen-input = 1 .&lt;/P&gt;&lt;P&gt;&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;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will surely sort your prob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 11:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311115#M793064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T11:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling Check Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311116#M793065</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;  Have you taken 2 separate User groups for radio buttons, 1 for block one radio button and 2 for block 2 radio buttons. If not try to do like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bujji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 12:00:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311116#M793065</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T12:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling Check Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311117#M793066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi , i HAVE DEFINED DIFFRENT gROUPS.....BELOW IS MY CODE.&lt;/P&gt;&lt;P&gt;*****************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETER :        CHECK1 RADIOBUTTON GROUP RAD1 DEFAULT 'X' USER-COMMAND ABC.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(26) TEXT-015.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS :  S_WERKS    FOR VBRP-WERKS MODIF ID PL.&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;PARAMETER :        CHECK2 RADIOBUTTON GROUP RAD1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(26) TEXT-011.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS :  S_KUNNR    FOR KNA1-KUNNR MODIF ID CU.&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;PARAMETER :        CHECK3 RADIOBUTTON GROUP RAD1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(26) TEXT-012.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS :   S_KUNNSO   FOR KNA1-KUNNR MODIF ID SO.&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 : END OF BLOCK B3.&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-002.&lt;/P&gt;&lt;P&gt;parameters :      RB_ALL radiobutton group rb default 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;parameters :      RB_VAT radiobutton group rb .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 3(10) TEXT-003.&lt;/P&gt;&lt;P&gt;parameters :      CK_VAT AS CHECKBOX MODIF ID VAT.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 18(16) TEXT-004.&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;parameters :      RB_CST radiobutton group rb.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 3(10) TEXT-005.&lt;/P&gt;&lt;P&gt;parameters :      CK_CST AS CHECKBOX MODIF ID CST.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 18(16) TEXT-006.&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;parameters :      RB_LST radiobutton group rb.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 3(10) TEXT-007.&lt;/P&gt;&lt;P&gt;parameters :      CK_LST AS CHECKBOX MODIF ID LST.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 18(16) TEXT-008.&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 : END OF BLOCK B4.&lt;/P&gt;&lt;P&gt;*******************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pLZ HELP. uRGENT.&lt;/P&gt;&lt;P&gt;kHAN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 12:07:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311117#M793066</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T12:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling Check Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311118#M793067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELF SOLVED&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 12:22:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-check-box/m-p/3311118#M793067</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T12:22:37Z</dc:date>
    </item>
  </channel>
</rss>

