<?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: ABAP Memory in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/1288233#M154543</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't use the parenthsis,  and make sure that the name of the internal table is the same in both the exporting and importing programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
EXPORT lt_vbrk = lt_vbrk TO MEMORY ID 'ZEML2'.



Import lt_vbrk = lt_vbrk from MEMORY ID 'ZEML2'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Apr 2006 15:05:50 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-04-04T15:05:50Z</dc:date>
    <item>
      <title>ABAP Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/1288230#M154540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to store an internal table in memory using   EXPORT (lt_vbrk) TO MEMORY ID 'ZEML2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; However I get the error "Object "ZNB" specified twice in EXPORT/IMPORT" where 'ZNB' is a billing type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The internal table consists of fkart fkdat and kunag FROM vbrk and contains no duplicates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone advise on how I can store this internal table in memory?&lt;/P&gt;&lt;P&gt;Many Thanks In Advance&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 14:54:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/1288230#M154540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T14:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/1288231#M154541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why do you put 'lt_vbrk' in brackets ?? try without brackets ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 14:56:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/1288231#M154541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T14:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/1288232#M154542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: INDXKEY LIKE INDX-SRTFD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INDXKEY = 'ZEML2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT ITAB1 = ITAB1 FROM DATABASE INDX(ST) ID INDXKEY.&lt;/P&gt;&lt;P&gt;EXPORT ITAB1 = ITAB1 TO DATABASE INDX(ST) ID INDXKEY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: Reward points, if you find this useful...!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 15:01:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/1288232#M154542</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2006-04-04T15:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/1288233#M154543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't use the parenthsis,  and make sure that the name of the internal table is the same in both the exporting and importing programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
EXPORT lt_vbrk = lt_vbrk TO MEMORY ID 'ZEML2'.



Import lt_vbrk = lt_vbrk from MEMORY ID 'ZEML2'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 15:05:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/1288233#M154543</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-04-04T15:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/1288234#M154544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;P&gt;Thanks for this it solved my problem.&lt;/P&gt;&lt;P&gt;SAP online help showed an example in brackets.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 15:16:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/1288234#M154544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T15:16:28Z</dc:date>
    </item>
  </channel>
</rss>

