<?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: Copying table data to another table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527536#M848649</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For Internal Tables...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
T_TABLE2[] = T_TABLE1[].
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For dictionary tables...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Taking good care of Z Data|https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3340] &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Mar 2008 21:17:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-05T21:17:52Z</dc:date>
    <item>
      <title>Copying table data to another table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527534#M848647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table with data and similar table with no data. &lt;/P&gt;&lt;P&gt;How to copy the table data into another table. Can any one suggest easy method?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 21:14:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527534#M848647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T21:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Copying table data to another table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527535#M848648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT table 1&lt;/P&gt;&lt;P&gt;   MOVE-CORRESPONDING table1 TO table2.&lt;/P&gt;&lt;P&gt;   APPEND table2.&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;Corresponding is used when both the tables have same field names. plz Make sure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 21:17:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527535#M848648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T21:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Copying table data to another table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527536#M848649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For Internal Tables...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
T_TABLE2[] = T_TABLE1[].
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For dictionary tables...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Taking good care of Z Data|https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3340] &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 21:17:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527536#M848649</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T21:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Copying table data to another table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527537#M848650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;itab[ ] = jtab[ ].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 21:17:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527537#M848650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T21:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: Copying table data to another table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527538#M848651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Those tow are database tables.&lt;/P&gt;&lt;P&gt;Example : Need to copy data from database table ztest1 to another database table ztest2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 21:37:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527538#M848651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T21:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Copying table data to another table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527539#M848652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you have download that data int o an internal table in your program then should update into second internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ztable1 into itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not itab[] is initial.&lt;/P&gt;&lt;P&gt; modify ztable2 from table itab.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Naren Someneni on Mar 5, 2008 3:44 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 21:43:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/copying-table-data-to-another-table/m-p/3527539#M848652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T21:43:13Z</dc:date>
    </item>
  </channel>
</rss>

