<?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: Export /import internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-import-internal-table/m-p/2011468#M410575</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;   i don't think it is possibl to append the memory id, as the export statement always overwrites the memory...so, what you can do is import first the int. table (which has some 10 records, let's say), append the new values to the int. table (5 records, so total it will have 15 records now), export the int. table...repeat the processes until all the data is exported/imported...here, i am doing the same for an int. table and a variable...hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT CHKMENGE I_SEG1 FROM MEMORY ID 'TRY'.&lt;/P&gt;&lt;P&gt;  MOVE I_MSEG-ZEILE TO I_SEG1-ZEILE.&lt;/P&gt;&lt;P&gt;  MOVE I_MSEG-BWART TO I_SEG1-BWART.&lt;/P&gt;&lt;P&gt;  MOVE I_MSEG-MENGE TO I_SEG1-MENGE.&lt;/P&gt;&lt;P&gt;  CHKMENGE = CHKMENGE + I_SEG1-MENGE.&lt;/P&gt;&lt;P&gt;  APPEND I_SEG1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; CLEAR I_SEG1.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  EXPORT CHKMENGE I_SEG1 TO MEMORY ID 'TRY'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful, reward&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sathish. R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Mar 2007 07:02:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-16T07:02:45Z</dc:date>
    <item>
      <title>Export /import internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-import-internal-table/m-p/2011466#M410573</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; I have a requirement where i need to export the internal table itab to the memory id and each time loop is getting executed,i need to append that record to the memory id,and as per the logic each time loop is getting executed itab is getting initialised.so is there any way to append record to the itab in memory id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 06:55:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-import-internal-table/m-p/2011466#M410573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T06:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Export /import internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-import-internal-table/m-p/2011467#M410574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Look at the below screen, you will understand how to do that one&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/export01.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/export01.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 07:01:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-import-internal-table/m-p/2011467#M410574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T07:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Export /import internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-import-internal-table/m-p/2011468#M410575</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;   i don't think it is possibl to append the memory id, as the export statement always overwrites the memory...so, what you can do is import first the int. table (which has some 10 records, let's say), append the new values to the int. table (5 records, so total it will have 15 records now), export the int. table...repeat the processes until all the data is exported/imported...here, i am doing the same for an int. table and a variable...hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT CHKMENGE I_SEG1 FROM MEMORY ID 'TRY'.&lt;/P&gt;&lt;P&gt;  MOVE I_MSEG-ZEILE TO I_SEG1-ZEILE.&lt;/P&gt;&lt;P&gt;  MOVE I_MSEG-BWART TO I_SEG1-BWART.&lt;/P&gt;&lt;P&gt;  MOVE I_MSEG-MENGE TO I_SEG1-MENGE.&lt;/P&gt;&lt;P&gt;  CHKMENGE = CHKMENGE + I_SEG1-MENGE.&lt;/P&gt;&lt;P&gt;  APPEND I_SEG1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; CLEAR I_SEG1.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  EXPORT CHKMENGE I_SEG1 TO MEMORY ID 'TRY'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful, reward&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sathish. R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 07:02:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-import-internal-table/m-p/2011468#M410575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T07:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Export /import internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-import-internal-table/m-p/2011469#M410576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;  in loop every time when the import and export statement is executed the previous contents is lost and new contents will be placed in that memory id.&lt;/P&gt;&lt;P&gt;according to me the only posibility every time u up load the internal table whole contents.it is not possible to append to memory id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 07:09:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-import-internal-table/m-p/2011469#M410576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T07:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Export /import internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-import-internal-table/m-p/2011470#M410577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudheer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you explain it a bit, actually i am not able to understand, if possible please give some example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 07:09:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-import-internal-table/m-p/2011470#M410577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T07:09:42Z</dc:date>
    </item>
  </channel>
</rss>

