<?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 Disable fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340857#M800874</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TRY THIS,&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;if P_report = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'PTH'.&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;screen-invisible = 1.&lt;/P&gt;&lt;P&gt;screen-required = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;clear screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;ELSEif P_DOwn = 'X' or P_dw_rp = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'PTH'.&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;screen-input = 1.&lt;/P&gt;&lt;P&gt;screen-output = 1.&lt;/P&gt;&lt;P&gt;screen-invisible = 0.&lt;/P&gt;&lt;P&gt;*screen-required = 1.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;clear 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;&lt;/P&gt;&lt;P&gt;THANKS,&lt;/P&gt;&lt;P&gt;GAURAV J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Feb 2008 06:01:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-01T06:01:06Z</dc:date>
    <item>
      <title>Selection Screen Disable fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340851#M800868</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;I have a selection screen with 2 radio buttons and 4 fields.When I select the 2nd radio button the 2nd field gets disabled.If I select the first radio button the 2nd field gets enabled only when I press ENTER.Is it possible that the  field gets automatically enabled when I click the first radio button. This is possible in screen but I am not able to do this if I make a  selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:50:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340851#M800868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T05:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Disable fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340852#M800869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use addition &lt;STRONG&gt;USER-COMMAND&lt;/STRONG&gt; to first radio button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check below example:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
parameters: p_rd1 radiobutton group rad1 default 'X' user-command but,
            p_rd2 radiobutton group rad1,
            p_text1 type char128,
            p_text2 type char128.

at selection-screen output.

  loop at screen.
     if screen-name CP '*P_TEXT2*'.
        if not p_rd1 is initial.
           screen-active = 1.
        else.
           screen-active = 0.
        endif.
        modify screen.
     endif.
  endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:52:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340852#M800869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T05:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Disable fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340853#M800870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dishant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; looks like you placed the code in a wrong event&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: pa_logic RADIOBUTTON GROUP e1 USER-COMMAND inv DEFAULT 'X',
pa_equip RADIOBUTTON GROUP e1,
pa_ob RADIOBUTTON GROUP e1.

PARAMETERS: pa_zpms AS CHECKBOX MODIF ID i1.

SELECTION-SCREEN BEGIN OF BLOCK a2 WITH FRAME TITLE text-002.

PARAMETERS :
pa_pex1 TYPE rlgrap-filename MODIF ID i2, " buyers list PC
pa_uex1(200) LOWER CASE MODIF ID i2. " buyers list Unix
SELECTION-SCREEN END OF BLOCK a2.

SELECTION-SCREEN BEGIN OF BLOCK a1 WITH FRAME TITLE text-001.
PARAMETERS:
pa_pex2 TYPE rlgrap-filename MODIF ID i2, "Commercial list PC
pa_uex2(200) LOWER CASE MODIF ID i2. "Commercial list Unix

SELECTION-SCREEN END OF BLOCK a1.


*AT SELECTION-SCREEN OUTPUT.*

IF pa_equip &amp;lt;&amp;gt; 'X'.
LOOP AT SCREEN.
IF screen-group1 = 'I1'.
screen-active = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.

IF pa_logic &amp;lt;&amp;gt; 'X'.
LOOP AT SCREEN.
IF screen-group1 = 'I2'.
screen-active = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:55:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340853#M800870</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-02-01T05:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Disable fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340854#M800871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:56:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340854#M800871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T05:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Disable fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340855#M800872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hope&lt;/P&gt;&lt;P&gt;this will resolve your query&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.&lt;/P&gt;&lt;P&gt;PARAMETERS: alv-list RADIOBUTTON GROUP gp1 DEFAULT 'X' USER-COMMAND chk,&lt;/P&gt;&lt;P&gt;            alv-grid RADIOBUTTON GROUP gp1.&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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: s_matnr TYPE mara-matnr MODIF ID g1.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: k_matnr FOR mara-matnr MODIF ID g2.&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;*FILE PATH&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_path(128) TYPE c.&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;PARAMETERS: p_var TYPE slis_vari.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                   At Selection-Screen(output)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF alv-list = 'X' AND screen-group1 = 'G1'.&lt;/P&gt;&lt;P&gt;      screen-active = 0.&lt;/P&gt;&lt;P&gt;*screen-intensified = '1'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    IF alv-grid = 'X' AND screen-group1 = 'G2'.&lt;/P&gt;&lt;P&gt;      screen-active = 0.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;P&gt;kushagra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340855#M800872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T05:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Disable fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340856#M800873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Dis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the example in my earlier post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:58:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340856#M800873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T05:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Disable fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340857#M800874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TRY THIS,&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;if P_report = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'PTH'.&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;screen-invisible = 1.&lt;/P&gt;&lt;P&gt;screen-required = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;clear screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;ELSEif P_DOwn = 'X' or P_dw_rp = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'PTH'.&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;screen-input = 1.&lt;/P&gt;&lt;P&gt;screen-output = 1.&lt;/P&gt;&lt;P&gt;screen-invisible = 0.&lt;/P&gt;&lt;P&gt;*screen-required = 1.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;clear 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;&lt;/P&gt;&lt;P&gt;THANKS,&lt;/P&gt;&lt;P&gt;GAURAV J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 06:01:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340857#M800874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T06:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Disable fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340858#M800875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 06:01:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340858#M800875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T06:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Disable fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340859#M800876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;find the below code it may help to your requirement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report YTEST_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES:&lt;/P&gt;&lt;P&gt;  sscrfields,                          " Screen Fields&lt;/P&gt;&lt;P&gt;  bhdgd.                               "#EC NEEDED " Common data area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants:&lt;/P&gt;&lt;P&gt;  c_true type c value 'X'.&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;SELECTION-SCREEN: BEGIN OF LINE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Presentation server&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;  pa_pre RADIOBUTTON GROUP rad         " Presentation Server&lt;/P&gt;&lt;P&gt;           USER-COMMAND app1 DEFAULT 'X'.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 8(16) text-004 FOR FIELD pa_pre.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN:POSITION 31.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Presentation Server File&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;  pa_pfile TYPE dynfnam MODIF ID pre.  " File on Local drive&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Application server&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;  pa_app RADIOBUTTON GROUP rad.        " Application Server&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 8(22) text-005 FOR FIELD pa_app.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SELECTION-SCREEN: END OF LINE.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Application Server file&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt; pa_afile LIKE rlgrap-filename&lt;/P&gt;&lt;P&gt;        MODIF ID app LOWER CASE.       " File Name on Appl.Server&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF LINE.&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;At Selection-Screen Output&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  PERFORM validate_screen.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  validate_screen&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This routine is used for screen validations&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;No interface parameters are required&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM validate_screen .&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF pa_pre EQ c_true .&lt;/P&gt;&lt;P&gt;      CLEAR pa_afile.&lt;/P&gt;&lt;P&gt;      IF screen-name EQ 'PA_PFILE'.&lt;/P&gt;&lt;P&gt;        screen-input = 1.&lt;/P&gt;&lt;P&gt;      ENDIF.                           " IF screen-name EQ 'PA_PFILE'.&lt;/P&gt;&lt;P&gt;      IF screen-name EQ 'PA_AFILE'.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;      ENDIF.                           " IF screen-name EQ 'PA_AFILE'&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      CLEAR pa_pfile.&lt;/P&gt;&lt;P&gt;      IF screen-name EQ 'PA_PFILE'.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;      ENDIF.                           " IF screen-name EQ 'PA_PFILE'&lt;/P&gt;&lt;P&gt;      IF screen-name EQ 'PA_AFILE'.&lt;/P&gt;&lt;P&gt;        screen-input = 1.&lt;/P&gt;&lt;P&gt;      ENDIF.                           " IF screen-name EQ 'PA_AFILE'&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.                             " IF pa_pre EQ c_true&lt;/P&gt;&lt;P&gt;  ENDLOOP.                             " LOOP AT SCREEN&lt;/P&gt;&lt;P&gt;ENDFORM.                               " Validate_screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 06:16:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340859#M800876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T06:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Disable fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340860#M800877</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;if the parameters are mandatory then with out provide data is it possible to gray out (disable) the field &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example i have 4 fields and 2 radio buttons &lt;/P&gt;&lt;P&gt;first field and 3rd and 4th fields are mandatory fields &lt;/P&gt;&lt;P&gt;when i click on first radio button then 4th fields needs to be disable (gray out).&lt;/P&gt;&lt;P&gt;when i click on second radio button&amp;nbsp; 3rd field needs to be disable (gray out).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.. when i click on first radio button is showing error Like fill all mandatory fields ,&lt;/P&gt;&lt;P&gt; how to solve this? can any one plz suggest me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 09:24:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340860#M800877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-02-04T09:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Disable fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340861#M800878</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;if the parameters are mandatory then with out provide data is it possible to gray out (disable) the field &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example i have 4 fields and 2 radio buttons &lt;/P&gt;&lt;P&gt;first field and 3rd and 4th fields are mandatory fields &lt;/P&gt;&lt;P&gt;when i click on first radio button then 4th fields needs to be disable (gray out).&lt;/P&gt;&lt;P&gt;when i click on second radio button&amp;nbsp; 3rd field needs to be disable (gray out).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.. when i click on first radio button is showing error Like fill all mandatory fields ,&lt;/P&gt;&lt;P&gt; how to solve this? can any one plz suggest me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Geeta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 09:25:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340861#M800878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-02-04T09:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Disable fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340862#M800879</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;if the parameters are mandatory then with out provide data is it possible to gray out (disable) the field &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example i have 4 fields and 2 radio buttons &lt;/P&gt;&lt;P&gt;first field and 3rd and 4th fields are mandatory fields &lt;/P&gt;&lt;P&gt;when i click on first radio button then 4th fields needs to be disable (gray out).&lt;/P&gt;&lt;P&gt;when i click on second radio button&amp;nbsp; 3rd field needs to be disable (gray out).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.. when i click on first radio button is showing error Like fill all mandatory fields ,&lt;/P&gt;&lt;P&gt; how to solve this? can any one plz suggest me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 09:26:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-disable-fields/m-p/3340862#M800879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-02-04T09:26:49Z</dc:date>
    </item>
  </channel>
</rss>

