<?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 program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program/m-p/4487746#M1062301</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In PBO write a module with this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when &lt;STRONG&gt;'PUSHBUTTON'&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'FIELD'.&lt;/P&gt;&lt;P&gt;screen-input = 1.      &lt;STRONG&gt;"enable&lt;/STRONG&gt;&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;when &lt;STRONG&gt;others&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'TABLE-FIELD'.&lt;/P&gt;&lt;P&gt;screen-input = 0.        &lt;STRONG&gt;"disable&lt;/STRONG&gt; &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;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vivek Gaur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Sep 2008 14:33:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-15T14:33:23Z</dc:date>
    <item>
      <title>module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program/m-p/4487744#M1062299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in screen painter put one push button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initially table field is disable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to own t.code  (se93).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once press the push button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the disable field will becomes enable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please write code brifly ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 14:20:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program/m-p/4487744#M1062299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T14:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program/m-p/4487745#M1062300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Your query:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in screen painter put one push button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initially table field is disable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to own t.code (se93).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once press the push button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the disable field will becomes enable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please write code brifly ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is it mean then when we execute a transaction, then the input field should be enabled.&lt;/P&gt;&lt;P&gt;Please check the values in the input field. i mean cross check it how it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PBO of the screen make the field as display mode. depending on the transaction it will be enable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'TCODE' ( created in se93 )&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;   if screen-name = 'TABLE-FIELD'.&lt;/P&gt;&lt;P&gt;   screen-input = 1. - enable&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; when others.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;   if screen-name = 'TABLE-FIELD'.&lt;/P&gt;&lt;P&gt;   screen-input = 0. - disable &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;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 14:28:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program/m-p/4487745#M1062300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T14:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program/m-p/4487746#M1062301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In PBO write a module with this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when &lt;STRONG&gt;'PUSHBUTTON'&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'FIELD'.&lt;/P&gt;&lt;P&gt;screen-input = 1.      &lt;STRONG&gt;"enable&lt;/STRONG&gt;&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;when &lt;STRONG&gt;others&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'TABLE-FIELD'.&lt;/P&gt;&lt;P&gt;screen-input = 0.        &lt;STRONG&gt;"disable&lt;/STRONG&gt; &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;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vivek Gaur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 14:33:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-program/m-p/4487746#M1062301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T14:33:23Z</dc:date>
    </item>
  </channel>
</rss>

