<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1888587#M372408</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;While transfering data from your internal table to the table control in your PBO, also check for the SCREEN-NAME parameter. If SCREEN-NAME equals the column name, make screen-input = 1 whereas for all the other column names, make screen-input = 0. This will enable you to make only one column editable. Always use the column name in upper case while comparing it with SCREEN-NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if the answer is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mukul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Jan 2007 18:25:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-19T18:25:22Z</dc:date>
    <item>
      <title>MODULE POOL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1888585#M372406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everyone.&lt;/P&gt;&lt;P&gt;i had a table control on a module pool. with one column that can be editable depending on a condition.&lt;/P&gt;&lt;P&gt;Can anyone tell me how to do this.&lt;/P&gt;&lt;P&gt;thks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 17:59:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1888585#M372406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T17:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: MODULE POOL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1888586#M372407</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;PRE&gt;&lt;CODE&gt;Step1: in the screen painter, for all the table columns set attribute OUTPUT only selected.

step2: in the flow logic declare a module inside the loop as written below:
 LOOP AT DYN_TAB with control tc_dyn_tab
                     CURSOR DYN_TAB_INDEX.
       MODULE SHOW_DYN_TAB.
 ENDLOOP.
step 3: write the following logic inside the module.
module show_dyn_tab output.
if condition1.
loop at screen.
        if screen-name = 'FIELDNAME IN CAPS'.
                   screen-input = '1'.
                   modify screen.
         endif.
endloop.
endmodule.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;\Sajan Joseph.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 18:10:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1888586#M372407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T18:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: MODULE POOL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1888587#M372408</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;While transfering data from your internal table to the table control in your PBO, also check for the SCREEN-NAME parameter. If SCREEN-NAME equals the column name, make screen-input = 1 whereas for all the other column names, make screen-input = 0. This will enable you to make only one column editable. Always use the column name in upper case while comparing it with SCREEN-NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if the answer is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mukul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 18:25:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1888587#M372408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T18:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: MODULE POOL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1888588#M372409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is really very easy,just go to PBO of that screen and write the code inside any module.this module should be inside LOOP ENDLOOP OF THE TABLE CONTROL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'NAMEOFSCREEN'.&lt;/P&gt;&lt;P&gt; SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt; SCREEN-OUTPUT = 1.&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>Tue, 06 Mar 2007 12:27:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1888588#M372409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T12:27:53Z</dc:date>
    </item>
  </channel>
</rss>

