<?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: How to transfer data between two tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-transfer-data-between-two-tables/m-p/1667648#M295429</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;the below metjhod u can adopt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;select data from 1st zable to internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)insert data from internal table to 2nd ztable simple.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:begin of itab occurs 0.&lt;/P&gt;&lt;P&gt;include structure ztable_structure1.&lt;/P&gt;&lt;P&gt;data:end of itab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;select * from ztable into table itab.&lt;/P&gt;&lt;P&gt;modify ztable1 FROM TABLE itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3 ) ike that u can catch date from other table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) if any condition is there u can check it in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped pls mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Nov 2006 06:14:58 GMT</pubDate>
    <dc:creator>anversha_s</dc:creator>
    <dc:date>2006-11-14T06:14:58Z</dc:date>
    <item>
      <title>How to transfer data between two tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-transfer-data-between-two-tables/m-p/1667646#M295427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends i have got a new problem actually i'm a fresher in this SAP so i have a doubt in SAP Smart Forms the problem is like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have a data element common in both of the tables BSEG and KNA1 and the common data element is KUNNR so i want to transfer all the data in the table BSEG to KNA1 of the same data element(KUNNR) in which there is data regarding customer information so i want to transfer the single customer data into another table KNA1 and i want to display the data in the output plz any one can help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 05:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-transfer-data-between-two-tables/m-p/1667646#M295427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T05:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to transfer data between two tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-transfer-data-between-two-tables/m-p/1667647#M295428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check table BSID/BSAD for Customer Open/Cleared items.Dont try to make use of BSEG table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first u must me clear abt what are u doing ? u cannt Transfer data b/w tables like as u said. But u have to make use loop/endloop after getting the relavent data from the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check Tcode F.27 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 06:14:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-transfer-data-between-two-tables/m-p/1667647#M295428</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T06:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to transfer data between two tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-transfer-data-between-two-tables/m-p/1667648#M295429</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;the below metjhod u can adopt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;select data from 1st zable to internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)insert data from internal table to 2nd ztable simple.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:begin of itab occurs 0.&lt;/P&gt;&lt;P&gt;include structure ztable_structure1.&lt;/P&gt;&lt;P&gt;data:end of itab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;select * from ztable into table itab.&lt;/P&gt;&lt;P&gt;modify ztable1 FROM TABLE itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3 ) ike that u can catch date from other table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) if any condition is there u can check it in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped pls mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 06:14:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-transfer-data-between-two-tables/m-p/1667648#M295429</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-11-14T06:14:58Z</dc:date>
    </item>
  </channel>
</rss>

