<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3597958#M866459</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 the PAI of the screen( that is containing the Table control), add the code that adds the content of the table control in the internal table. &lt;/P&gt;&lt;P&gt;Say, when u press enter-&lt;/P&gt;&lt;P&gt;the control goes to the PAI.&lt;/P&gt;&lt;P&gt;in the PAI,&lt;/P&gt;&lt;P&gt;check if ucomm value is enter..&lt;/P&gt;&lt;P&gt;then read the table control value and update the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this explaination helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Mar 2008 11:41:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-26T11:41:56Z</dc:date>
    <item>
      <title>TABLE CONTROL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3597957#M866458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi i want to add records in table control at run time in screen painter. how i add these because when i adding first record its ok,but when i add  second record in second row the first record is flush out when i press enter button&lt;/P&gt;&lt;P&gt;so what is solution for that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 11:32:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3597957#M866458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T11:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: TABLE CONTROL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3597958#M866459</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 the PAI of the screen( that is containing the Table control), add the code that adds the content of the table control in the internal table. &lt;/P&gt;&lt;P&gt;Say, when u press enter-&lt;/P&gt;&lt;P&gt;the control goes to the PAI.&lt;/P&gt;&lt;P&gt;in the PAI,&lt;/P&gt;&lt;P&gt;check if ucomm value is enter..&lt;/P&gt;&lt;P&gt;then read the table control value and update the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this explaination helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 11:41:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3597958#M866459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T11:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: TABLE CONTROL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3597959#M866460</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;have u created table control by WIZARD..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make one module in PAI in LOOP ENDLOOP between CHAIN ENDCHAIN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;TABLECONTROL 'TAB1'&lt;/P&gt;&lt;P&gt;  LOOP AT i_mat.&lt;/P&gt;&lt;P&gt;    CHAIN.&lt;/P&gt;&lt;P&gt;      FIELD i_mat-matnr.&lt;/P&gt;&lt;P&gt;      FIELD i_mat-meins.&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;MODULE tab1_modify ON CHAIN-REQUEST.&lt;/STRONG&gt;&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 tab1_modify INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;APPEND i_mat.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                    "TAB1_MODIFY INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i_mat is my internal table from which i have created table control....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 11:43:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3597959#M866460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T11:43:33Z</dc:date>
    </item>
  </channel>
</rss>

