<?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: LOOP AT TABLE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-table/m-p/2896858#M681024</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;  If the both the internal table structures are same..Then use the following..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND LINES OF ITAB1 TO ITAB2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Oct 2007 00:22:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-24T00:22:32Z</dc:date>
    <item>
      <title>LOOP AT TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-table/m-p/2896857#M681023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;how can we append one table contents to another internal table without using loop? is it possible?&lt;/P&gt;&lt;P&gt;pls advise. thank.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 00:16:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-table/m-p/2896857#M681023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T00:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: LOOP AT TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-table/m-p/2896858#M681024</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;  If the both the internal table structures are same..Then use the following..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND LINES OF ITAB1 TO ITAB2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 00:22:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-table/m-p/2896858#M681024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T00:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: LOOP AT TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-table/m-p/2896859#M681025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use below syntax if both table structure are same :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab1[] = itab2[]. -&amp;gt; performance is good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or append lines of itab2 to itab1. -&amp;gt; performance is bad&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 00:57:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-table/m-p/2896859#M681025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T00:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: LOOP AT TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-table/m-p/2896860#M681026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can we comparing two table without using loop to increase performance?&lt;/P&gt;&lt;P&gt;pls advise, thank.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 08:37:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-table/m-p/2896860#M681026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T08:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: LOOP AT TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-table/m-p/2896861#M681027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;you cant compare two table contents without looping into it.&lt;/P&gt;&lt;P&gt;if u want to tranfer the data use foll syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab1[] = itab2[] .&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;move-corresponding itab1 to itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sheetal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 10:05:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-table/m-p/2896861#M681027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T10:05:31Z</dc:date>
    </item>
  </channel>
</rss>

