<?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: Module pool : How to make an Input field enable disable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296686#M1024651</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use like below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CASE sy-ucomm.
when 'BUTTON'.
    LOOP AT SCREEN.
       IF screen-name CS 'P_INPUT'.
        screen-input = 0.
        MODIFY SCREEN.
      ENDIF. 
   ENDLOOP.                          
 ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Aug 2008 05:25:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-04T05:25:29Z</dc:date>
    <item>
      <title>Module pool : How to make an Input field enable disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296685#M1024650</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 have an Input field in the screen which will be disable for input at first display but at click of a button I want to make that field enable for input how to do it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made the field disable for input through screen painter now tell me how to make it enable through the program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 05:22:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296685#M1024650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T05:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool : How to make an Input field enable disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296686#M1024651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use like below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CASE sy-ucomm.
when 'BUTTON'.
    LOOP AT SCREEN.
       IF screen-name CS 'P_INPUT'.
        screen-input = 0.
        MODIFY SCREEN.
      ENDIF. 
   ENDLOOP.                          
 ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 05:25:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296686#M1024651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T05:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool : How to make an Input field enable disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296687#M1024652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try this using event &lt;STRONG&gt;AT SELECTION-SCREEN OUTPUT&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: p_ebeln TYPE ekko-ebeln,
           p_check TYPE c AS CHECKBOX USER-COMMAND us.

AT SELECTION-SCREEN OUTPUT.
  IF p_check IS INITIAL.
    LOOP AT SCREEN.
      IF screen-name = 'P_EBELN'.
        screen-input = 0.
        MODIFY SCREEN.
      ENDIF.

    ENDLOOP.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 05:27:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296687#M1024652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T05:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool : How to make an Input field enable disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296688#M1024653</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 modify screen statement enables you to make modifications on the screen like display/hide...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;MODIFY SCREEN FROM wa. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This statement can be used in the statement block after LOOP AT SCREEN only and makes sense only during PBO processing. If FROM is not specified, MODIFY SCREEN modifies the attributes of the current screen element with the values from the predefined screen work area. If a wa work area is specified, its contents are used for the modification. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The wa work area must have the same data type as screen. The name component must contain the name of the current screen element, otherwise the statement is not executed. nweisung nicht ausgeführt. Up to the group1 to group4 and length components, all remaining components of screen and wa must contain either the value 0 or 1. The value 0 deactivates the corresponding field attribute, and 1 activates it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If MODIFY SCREEN is executed during PBO processing, the modified attributes for the display of the screen affect the current dynpro after PBO processing. The attributes of the screen element of the dynpro are reset to their static attributes at the start of each PBO processing, so that the execution of MODIFY SCREEN during PAI processing does not effect the display of the following screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The active component &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The active component is used to set the input, output and invisible components at once. At the start of PBO processing, the active component always has the value 1. If active is set to 0 with MODIFY SCREEN, input and output are automatically set to 0 and invisible is set to 1. Other values in input, output and invisible are ignored. Conversely, setting input and output to 0 and invisible to 1 automatically sets active to 0 and a different value in active is ignored. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modifications in Table Controls and Step Loops &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;During processing of a table control or a step loop, the changes affect the current line of the table control or the current step loop group. Before the processing of a table control, the change to the attributes of a screen element that is part of a line in the table control does not effect the table control, since the values are transferred from the structure created using CONTROLS. Before a step loop is processed, the change to the attributes of a screen elements that is part of a step loop group affects all groups in the step loop. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modifications to Tabstrip Controls &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the active component for a tab title of a tabstrip control is set to 0, the whole tabstrip page is hidden. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;In the following PBO module, an input field called val is made mandatory and converted to display in the foreground. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE modify_0100 OUTPUT. &lt;/P&gt;&lt;P&gt;LOOP AT SCREEN. &lt;/P&gt;&lt;P&gt;IF screen-name = 'VAL'. &lt;/P&gt;&lt;P&gt;screen-required = '1'. &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;ENDLOOP. &lt;/P&gt;&lt;P&gt;ENDMODULE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case use screen-active = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Subash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 05:29:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296688#M1024653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T05:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool : How to make an Input field enable disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296689#M1024654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Use this code to enable to take input.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;       IF screen-name eq &amp;lt;filedname&amp;gt;.&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;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Jagadeesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 05:30:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296689#M1024654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T05:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool : How to make an Input field enable disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296690#M1024655</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;  You dont make that button disable from screen painter level....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better to use both disable and anable logics in program itself, With that MODIFY and LOOP AT SCREEN statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen Inuganti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 05:32:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296690#M1024655</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-08-04T05:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool : How to make an Input field enable disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296691#M1024656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Do as below in&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;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;       IF screen-name eq 's_belnr'.        &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;P&gt;&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;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 05:34:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296691#M1024656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T05:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool : How to make an Input field enable disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296692#M1024657</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;STRONG&gt;DEMO_DYNPRO_MODIFY_SIMPLE&lt;/STRONG&gt; see this standard demo program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will help...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 05:34:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296692#M1024657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T05:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool : How to make an Input field enable disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296693#M1024658</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;As you have already made the input field input disabled, so in the PBO module write the below code for input Enable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

Case sy-ucomm.
 when 'BUTTON'. " Function code for the button in capital
  Loop at screen.
    if screen-name CS 'FIELDNAME'.  " Field name in Capital 
  Screen-input = 1.
Modify screen.
Endif.
Endloop.
Endcase.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 05:37:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296693#M1024658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T05:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool : How to make an Input field enable disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296694#M1024659</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;in field attribues give tick only to the output field. ( it will display the disable field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;oce u click on the buuton write the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'FIELDNAME'.&lt;/P&gt;&lt;P&gt;    SCREEN-INPUT = '1'.&lt;/P&gt;&lt;P&gt;    SCREEN-ACTIVE = '1'.&lt;/P&gt;&lt;P&gt;    SCREEN-OUTPUT = '1'.&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>Mon, 04 Aug 2008 05:47:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296694#M1024659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T05:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool : How to make an Input field enable disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296695#M1024660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bikas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to suggest a reference,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SDN - Reference - Box in module pool layout - ENABLE/DISABLE functions|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="725136"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that's usefull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck &amp;amp; Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Harsh Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 05:52:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296695#M1024660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T05:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool : How to make an Input field enable disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296696#M1024661</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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;First set the input field property as a disable (I mean remove the mark from the Attributes --&amp;gt; Program --&amp;gt; Input field ). &lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;Write the following code in PAI&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt; MODULE ip_enable.&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;Write the following code in report&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE ip_enable INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'BUTN'.&lt;/P&gt;&lt;P&gt;    Loop at screen.&lt;/P&gt;&lt;P&gt;       If screen-name = 'INPUT1'.&lt;/P&gt;&lt;P&gt;        screen-input = 1. // It enables the input field&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; ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 06:00:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-how-to-make-an-input-field-enable-disable/m-p/4296696#M1024661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T06:00:33Z</dc:date>
    </item>
  </channel>
</rss>

