<?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: Data Transfer between two internal tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-internal-tables/m-p/2657759#M612967</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"Second, what if I want to append the smaller internal table itab_b to itab_a, how would you do that."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming that both tables have the same fields in them:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND LINES OF ITAB_B[] TO ITAB_A[].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Aug 2007 20:22:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-21T20:22:31Z</dc:date>
    <item>
      <title>Data Transfer between two internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-internal-tables/m-p/2657757#M612965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I have two internal tables itab_a and Itab_b and I want to copy a subset of itab_a to itab_b using a conditional statement, is it possible and how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second, what if I want to append the smaller internal table itab_b to itab_a, how would you do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My task is to take some of the rows from a into b, change one field and append back to a. So if a had 100 rows, now it would have 110.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saf.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 19:59:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-internal-tables/m-p/2657757#M612965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T19:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: Data Transfer between two internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-internal-tables/m-p/2657758#M612966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I have two internal tables itab_a and Itab_b and I want to copy a subset of itab_a to itab_b using a conditional statement, is it possible and how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB_A.&lt;/P&gt;&lt;P&gt;  IF ITAB_A-SOME_FIELD = SOME_VALUE.&lt;/P&gt;&lt;P&gt;     MOVE-CORRESPONDING ITAB_A TO ITAB_B.&lt;/P&gt;&lt;P&gt;     APPEND ITAB_B.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 20:19:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-internal-tables/m-p/2657758#M612966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T20:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: Data Transfer between two internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-internal-tables/m-p/2657759#M612967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"Second, what if I want to append the smaller internal table itab_b to itab_a, how would you do that."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming that both tables have the same fields in them:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND LINES OF ITAB_B[] TO ITAB_A[].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 20:22:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-internal-tables/m-p/2657759#M612967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T20:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Data Transfer between two internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-internal-tables/m-p/2657760#M612968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, John. Points awarded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 15:01:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-internal-tables/m-p/2657760#M612968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T15:01:54Z</dc:date>
    </item>
  </channel>
</rss>

