<?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: insert data in multiple recordsfrom table control to internal table. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-in-multiple-recordsfrom-table-control-to-internal-table/m-p/3750004#M902206</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Apr 2008 11:46:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-28T11:46:53Z</dc:date>
    <item>
      <title>insert data in multiple recordsfrom table control to internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-in-multiple-recordsfrom-table-control-to-internal-table/m-p/3750002#M902204</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;i want to transfer data from table control t o internal table with three fields....... table control having multiple records.&lt;/P&gt;&lt;P&gt;for example.&lt;/P&gt;&lt;P&gt;first i want to want to transfer 10 records. at time.&lt;/P&gt;&lt;P&gt;next time save three  records like that i wnt to save it......&lt;/P&gt;&lt;P&gt;thank u&lt;/P&gt;&lt;P&gt;suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 04:55:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-in-multiple-recordsfrom-table-control-to-internal-table/m-p/3750002#M902204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-26T04:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: insert data in multiple recordsfrom table control to internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-in-multiple-recordsfrom-table-control-to-internal-table/m-p/3750003#M902205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Consider the table control as int_tc&lt;/P&gt;&lt;P&gt;and your internal table as int_table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you need to enter 10 records..from int_tc to int_table.&lt;/P&gt;&lt;P&gt;do the following&lt;/P&gt;&lt;P&gt;append LINES OF int_tc [FROM idx1] [TO idx2] to int_table.&lt;/P&gt;&lt;P&gt; put &lt;/P&gt;&lt;P&gt;append LINES OF int_tc FROM 1 TO 10 to int_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The rows of an internal table jtab are appended according to the same rules that apply for appending a workarea, in the sequence in which they exist in jtab. If jtab is an index table, you can restrict the rows to be appended by specifying FROM idx1 and TO idx2. In this case, only the table rows starting at table index idx1 or ending at table index idx2 from jtab are appended. For idx1 and idx2, data objects of type i are expected. If the value idx1 or idx2 is less than 0, an untreatable exception occurs. If idx1 is greater than idx2 or greater than the number of table rows, no rows are appended. If idx2 is greater than the number of table rows, it is set to the number of table rows. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so next time you want to enter 3 records&lt;/P&gt;&lt;P&gt;put &lt;/P&gt;&lt;P&gt;append LINES OF int_tc FROM 11 TO 13 to int_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do ..... &lt;/P&gt;&lt;P&gt;data : count type i.&lt;/P&gt;&lt;P&gt;describe table int_tc lines count.&lt;/P&gt;&lt;P&gt;count returns number of  lines in the table&lt;/P&gt;&lt;P&gt;so make sure that you give index of existing lines otherwise the output may be unpredictable or even a dump&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls check and revert&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Apr 2008 11:13:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-in-multiple-recordsfrom-table-control-to-internal-table/m-p/3750003#M902205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-26T11:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: insert data in multiple recordsfrom table control to internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-in-multiple-recordsfrom-table-control-to-internal-table/m-p/3750004#M902206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 11:46:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-in-multiple-recordsfrom-table-control-to-internal-table/m-p/3750004#M902206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T11:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: insert data in multiple recordsfrom table control to internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-in-multiple-recordsfrom-table-control-to-internal-table/m-p/3750005#M902207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u for giving keys&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2008 05:08:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-in-multiple-recordsfrom-table-control-to-internal-table/m-p/3750005#M902207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-02T05:08:08Z</dc:date>
    </item>
  </channel>
</rss>

