<?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 how to disable the field in module pool programming? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-disable-the-field-in-module-pool-programming/m-p/4386922#M1043245</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to know how to disable or enable the fields in module pool programming.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 31 Aug 2008 04:16:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-31T04:16:58Z</dc:date>
    <item>
      <title>how to disable the field in module pool programming?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-disable-the-field-in-module-pool-programming/m-p/4386922#M1043245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to know how to disable or enable the fields in module pool programming.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Aug 2008 04:16:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-disable-the-field-in-module-pool-programming/m-p/4386922#M1043245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-31T04:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to disable the field in module pool programming?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-disable-the-field-in-module-pool-programming/m-p/4386923#M1043246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;You can disable/enable the fields statically by checking the parameters in screen painter.&lt;/P&gt;&lt;P&gt;However, if you want to disable/enable the fields dynamically then you can use 'loop at screen'.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT SCREEN.
  IF screen-name = 'ZSRSK-ADVNO' .
     screen-input = 0.
     MODIFY SCREEN.
  ENDIF.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Firoz.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Aug 2008 04:59:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-disable-the-field-in-module-pool-programming/m-p/4386923#M1043246</guid>
      <dc:creator>Firoz_Ashraf</dc:creator>
      <dc:date>2008-08-31T04:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to disable the field in module pool programming?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-disable-the-field-in-module-pool-programming/m-p/4386924#M1043247</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;use this code.&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 &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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Aug 2008 07:15:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-disable-the-field-in-module-pool-programming/m-p/4386924#M1043247</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2008-08-31T07:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to disable the field in module pool programming?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-disable-the-field-in-module-pool-programming/m-p/4386925#M1043248</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 can use this code.&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 &amp;lt;filedname&amp;gt;.&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;Or  you can use the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group eq &amp;lt;GR1&amp;gt;.&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;where GR1 has to be assigned by double clicking on the field in the screen and then adding GR1 is the group field that appears by the title screen attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sure dis will solve your problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do get back for any clarifications&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Aug 2008 08:22:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-disable-the-field-in-module-pool-programming/m-p/4386925#M1043248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-31T08:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to disable the field in module pool programming?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-disable-the-field-in-module-pool-programming/m-p/4386926#M1043249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thankq...for ur answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Aug 2008 08:29:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-disable-the-field-in-module-pool-programming/m-p/4386926#M1043249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-31T08:29:19Z</dc:date>
    </item>
  </channel>
</rss>

