<?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: table control module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-module-pool/m-p/4058385#M970150</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi...suppose u r using a table itab for ur table control...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in PAI first populate the table with A1, A2 and A3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;    CHAIN.&lt;/P&gt;&lt;P&gt;      field itab-field1.&lt;/P&gt;&lt;P&gt;      field itab-field2.&lt;/P&gt;&lt;P&gt;      field itab-field3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MODULE m_fill.&lt;/P&gt;&lt;P&gt;    ENDCHAIN.&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;module m_fill.&lt;/P&gt;&lt;P&gt;INSERT itab INDEX tc_contrl-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate '10-'  itab-field1  into   wa_itab-field1.&lt;/P&gt;&lt;P&gt;concatenate '12-'  itab-field2  into   wa_itab-field2.&lt;/P&gt;&lt;P&gt;concatenate '14-'  itab-field3 into   wa_itab-field3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append wa_itab to itab.&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;here tc_contrl is name of the table controll u are using...&lt;/P&gt;&lt;P&gt;hope it helps...reward points if helpful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Jul 2008 05:00:43 GMT</pubDate>
    <dc:creator>former_member195383</dc:creator>
    <dc:date>2008-07-03T05:00:43Z</dc:date>
    <item>
      <title>table control module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-module-pool/m-p/4058384#M970149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi! Abapers ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now here is a table control as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------" /&gt;&lt;P&gt;head1  |             head2   |               head3 &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------" /&gt;&lt;P&gt;A1       |            A2         |              A3 &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------" /&gt;&lt;P&gt;10-A1   |           12-A2     |             14-A3&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here in this table control values the first row A1 , A2 , A3 are &lt;/P&gt;&lt;P&gt;manualy entered by users .&lt;/P&gt;&lt;P&gt;The second row should be calculated automatically as &lt;/P&gt;&lt;P&gt;10-A1, 12-A2, 14-A3 and diplayed in the table control once users press save button or enter key .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2008 04:47:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-module-pool/m-p/4058384#M970149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-03T04:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: table control module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-module-pool/m-p/4058385#M970150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi...suppose u r using a table itab for ur table control...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in PAI first populate the table with A1, A2 and A3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;    CHAIN.&lt;/P&gt;&lt;P&gt;      field itab-field1.&lt;/P&gt;&lt;P&gt;      field itab-field2.&lt;/P&gt;&lt;P&gt;      field itab-field3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MODULE m_fill.&lt;/P&gt;&lt;P&gt;    ENDCHAIN.&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;module m_fill.&lt;/P&gt;&lt;P&gt;INSERT itab INDEX tc_contrl-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate '10-'  itab-field1  into   wa_itab-field1.&lt;/P&gt;&lt;P&gt;concatenate '12-'  itab-field2  into   wa_itab-field2.&lt;/P&gt;&lt;P&gt;concatenate '14-'  itab-field3 into   wa_itab-field3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append wa_itab to itab.&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;here tc_contrl is name of the table controll u are using...&lt;/P&gt;&lt;P&gt;hope it helps...reward points if helpful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2008 05:00:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-module-pool/m-p/4058385#M970150</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2008-07-03T05:00:43Z</dc:date>
    </item>
  </channel>
</rss>

