<?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 Ztables. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161937#M457385</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Leo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      You can write a small program to select the data from ztable1 and update the same in the ztable2. This is one way. How differently you want to move. Can you give me some more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Jayaram..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Apr 2007 13:36:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-26T13:36:29Z</dc:date>
    <item>
      <title>Data Transfer between two Ztables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161935#M457383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement where I need to transfer some set of data from ztable1 to ztable2 on the same client. Your suggestions @ this point will be helpful and would be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 13:28:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161935#M457383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T13:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Data Transfer between two Ztables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161936#M457384</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;declare 2 internal tables ITAB and ITAB1 for Ztable1 and ZTable2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fetch the data from Ztable1 to ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at ITAb.&lt;/P&gt;&lt;P&gt; Move-corresponding  ITAB to ITAB1.&lt;/P&gt;&lt;P&gt;append ITAB1.&lt;/P&gt;&lt;P&gt;clear ITAB1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Update the ZTABLE2 by using INSERT command from ITAB1.&lt;/P&gt;&lt;P&gt;Insert into ZTABLE2 from ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 13:35:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161936#M457384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T13:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: Data Transfer between two Ztables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161937#M457385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Leo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      You can write a small program to select the data from ztable1 and update the same in the ztable2. This is one way. How differently you want to move. Can you give me some more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Jayaram..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 13:36:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161937#M457385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T13:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Data Transfer between two Ztables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161938#M457386</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;Simple way is to write a program... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to me, we can export data from source table and import to other table through OS level commands .. This is done by basis team... Please verify it with them...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 13:37:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161938#M457386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T13:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Data Transfer between two Ztables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161939#M457387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Leo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        If the two z tables have same structure means Create One Internal table based on the z table Structure. Then Retrive the values from first z table into internal table and than insert the datas to second z table using internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helpful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 13:37:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161939#M457387</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T13:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: Data Transfer between two Ztables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161940#M457388</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;&lt;/P&gt;&lt;P&gt;Thanks for all your suggestions. They have the same structure with diff field names and it will be better I write a program, as they dont do OS level commands. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 13:43:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-between-two-ztables/m-p/2161940#M457388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T13:43:17Z</dc:date>
    </item>
  </channel>
</rss>

