<?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: Regarding import and export memory in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-import-and-export-memory/m-p/3141653#M746690</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, check this one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM1's codes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT IO_TABLE TO MEMORY ID MEM_STR.&lt;/P&gt;&lt;P&gt;SUBMIT PROGRAM2 AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM2's codes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT from MEMORY ID MEM_STR to io_table.&lt;/P&gt;&lt;P&gt;P_TABLE = IO_TABLE.&lt;/P&gt;&lt;P&gt;FREE MEMORY ID MEM_STR.&lt;/P&gt;&lt;P&gt;CLEAR MEM_STR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Dec 2007 06:46:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-27T06:46:15Z</dc:date>
    <item>
      <title>Regarding import and export memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-import-and-export-memory/m-p/3141650#M746687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, currently i have encountered this problem when i am using the import and export memory statement. After i export my table name from program1 to program2, i do an import statement at program2 to retrieve the table name but there is a problem in retrieving the name. Below are the codes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM1's codes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT IO_TABLE TO MEMORY ID MEM_STR.&lt;/P&gt;&lt;P&gt;SUBMIT PROGRAM2 AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM2's codes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT IO_TABLE TO MEMORY ID MEM_STR.&lt;/P&gt;&lt;P&gt;P_TABLE = IO_TABLE.&lt;/P&gt;&lt;P&gt;FREE MEMORY ID MEM_STR.&lt;/P&gt;&lt;P&gt;CLEAR MEM_STR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2007 06:38:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-import-and-export-memory/m-p/3141650#M746687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-27T06:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding import and export memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-import-and-export-memory/m-p/3141651#M746688</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;use &lt;/P&gt;&lt;P&gt;EXPORT IO_TABLE TO MEMORY ID 'MEM_STR'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or else try out for &lt;/P&gt;&lt;P&gt;SET PARAMETER ID and GET PARAMETER ID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vikas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward if helpful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2007 06:42:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-import-and-export-memory/m-p/3141651#M746688</guid>
      <dc:creator>VikasB</dc:creator>
      <dc:date>2007-12-27T06:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding import and export memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-import-and-export-memory/m-p/3141652#M746689</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;u need to use FROM while importing data.&lt;/P&gt;&lt;P&gt;below are syntaxes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- IMPORT obj1 ... objn FROM DATA BUFFER f. &lt;/P&gt;&lt;P&gt;- IMPORT obj1 ... objn FROM MEMORY. &lt;/P&gt;&lt;P&gt;- IMPORT obj1 ... objn FROM SHARED MEMORY itab(ar) ID key. &lt;/P&gt;&lt;P&gt;- IMPORT obj1 ... objn FROM SHARED BUFFER itab(ar) ID key. &lt;/P&gt;&lt;P&gt;- IMPORT obj1 ... objn FROM DATABASE dbtab(ar) ID key. &lt;/P&gt;&lt;P&gt;- IMPORT obj1 ... objn FROM DATASET dsn(ar) ID key. &lt;/P&gt;&lt;P&gt;- IMPORT obj1 ... objn FROM LOGFILE ID key. &lt;/P&gt;&lt;P&gt;- IMPORT DIRECTORY INTO itab FROM DATABASE dbtab(ar) ID key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tc&lt;/P&gt;&lt;P&gt;saji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2007 06:45:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-import-and-export-memory/m-p/3141652#M746689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-27T06:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding import and export memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-import-and-export-memory/m-p/3141653#M746690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, check this one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM1's codes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT IO_TABLE TO MEMORY ID MEM_STR.&lt;/P&gt;&lt;P&gt;SUBMIT PROGRAM2 AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM2's codes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT from MEMORY ID MEM_STR to io_table.&lt;/P&gt;&lt;P&gt;P_TABLE = IO_TABLE.&lt;/P&gt;&lt;P&gt;FREE MEMORY ID MEM_STR.&lt;/P&gt;&lt;P&gt;CLEAR MEM_STR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2007 06:46:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-import-and-export-memory/m-p/3141653#M746690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-27T06:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding import and export memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-import-and-export-memory/m-p/3141654#M746691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check these programs they are working fine, the report ZCALLING calls the report ZCALLED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZCALLING.&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt; BEGIN OF IO_TABLE OCCURS 0,&lt;/P&gt;&lt;P&gt;   MATNR TYPE MARA-MATNR,&lt;/P&gt;&lt;P&gt; END OF IO_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IO_TABLE-MATNR = '38'.&lt;/P&gt;&lt;P&gt; APPEND IO_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT IO_TABLE TO MEMORY ID 'MEM_STR'.&lt;/P&gt;&lt;P&gt;SUBMIT ZCALLED AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZCALLED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt; BEGIN OF IO_TABLE OCCURS 0,&lt;/P&gt;&lt;P&gt;   MATNR TYPE MARA-MATNR,&lt;/P&gt;&lt;P&gt; END OF IO_TABLE,&lt;/P&gt;&lt;P&gt; P_TABLE LIKE STANDARD TABLE OF IO_TABLE WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT IO_TABLE FROM MEMORY ID 'MEM_STR'.&lt;/P&gt;&lt;P&gt;P_TABLE[] = IO_TABLE[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT P_TABLE.&lt;/P&gt;&lt;P&gt; WRITE P_TABLE-MATNR.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2007 06:54:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-import-and-export-memory/m-p/3141654#M746691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-27T06:54:45Z</dc:date>
    </item>
  </channel>
</rss>

