<?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 table controlls in module pool programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-controlls-in-module-pool-programming/m-p/1966922#M397037</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all.&lt;/P&gt;&lt;P&gt;I have an issue in module pool program.&lt;/P&gt;&lt;P&gt;I created a table controll in the screen through table controll wizard.&lt;/P&gt;&lt;P&gt;In that if I enter the data for 10 records(more than 1),then I(pressed)clicked on ENTER . then only first record is staying in the table controll.all other recods are &lt;/P&gt;&lt;P&gt;going(disappering) from the table controll.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body help me to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Feb 2007 13:04:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-13T13:04:32Z</dc:date>
    <item>
      <title>table controlls in module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-controlls-in-module-pool-programming/m-p/1966922#M397037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all.&lt;/P&gt;&lt;P&gt;I have an issue in module pool program.&lt;/P&gt;&lt;P&gt;I created a table controll in the screen through table controll wizard.&lt;/P&gt;&lt;P&gt;In that if I enter the data for 10 records(more than 1),then I(pressed)clicked on ENTER . then only first record is staying in the table controll.all other recods are &lt;/P&gt;&lt;P&gt;going(disappering) from the table controll.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body help me to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 13:04:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-controlls-in-module-pool-programming/m-p/1966922#M397037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T13:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: table controlls in module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-controlls-in-module-pool-programming/m-p/1966923#M397038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; The Internal table/Structure which holds the Table Control records data is getting refreshed in PAI of the screen. So please check the code and made changes such that the values are not refreshed in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chaitanya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 13:09:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-controlls-in-module-pool-programming/m-p/1966923#M397038</guid>
      <dc:creator>Chaitanyat</dc:creator>
      <dc:date>2007-02-13T13:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: table controlls in module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-controlls-in-module-pool-programming/m-p/1966924#M397039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you are not storing the entries given in the table control.&lt;/P&gt;&lt;P&gt;i can give you an idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare an internal table which has the same structure as of the table control.&lt;/P&gt;&lt;P&gt;in the PAI event, refresh the internal talbe.&lt;/P&gt;&lt;P&gt;loop at the table control. move all the entries of the table control to the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the PBO event, refresh the table control. count the number of lines in table control. insert all the lines of internal table to the table control one after another.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 13:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-controlls-in-module-pool-programming/m-p/1966924#M397039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T13:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: table controlls in module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-controlls-in-module-pool-programming/m-p/1966925#M397040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;Now i had seen in the debugging.&lt;/P&gt;&lt;P&gt;The data what I entered is not at all saving in the table controll.&lt;/P&gt;&lt;P&gt;with in the loop in PAI, the values are comming to the header but not moving to the body.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i used Append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but each time I clicked on ENTER they are appending.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give me an idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 13:50:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-controlls-in-module-pool-programming/m-p/1966925#M397040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T13:50:48Z</dc:date>
    </item>
  </channel>
</rss>

