<?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 ids in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory-ids/m-p/3416166#M820483</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The EXPORT TO MEMORY and IMPORT FROM MEMORY &lt;/P&gt;&lt;P&gt;using this we can export data from one pgm &amp;amp; can use in another by importing is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP or SAP memory available for use you can see in debug mode. In Debug Mode Goto -&amp;gt; System Areas - SAP Memory/ ABAP memory&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Feb 2008 12:35:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-11T12:35:49Z</dc:date>
    <item>
      <title>abap memory ids</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory-ids/m-p/3416163#M820480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;can u please tell me what does this mean-:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT wa_qave FROM MEMORY ID 'WA_QAVE'.    and what is WA_QAVE and where can i find these memory ids in SAP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 12:28:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory-ids/m-p/3416163#M820480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T12:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: abap memory ids</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory-ids/m-p/3416164#M820481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. Data within this area remains intact during a whole sequence of program calls. To pass data to a program which you are calling, the data needs to be placed in ABAP memory before the call is made. The internal session of the called program then replaces that of the calling program. The program called can then read from the ABAP memory. If control is then returned to the program which made the initial call, the same process operates in reverse. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 12:31:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory-ids/m-p/3416164#M820481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T12:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: abap memory ids</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory-ids/m-p/3416165#M820482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi we can upload data into ABAP memory using EXPORT statement and we can get the data into another program using IMPORT statement. Here is some info on ABAP memory. the W_* is the name given by you to the memory location. you can give any name. and must use the same name to import the data from memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. Data within this area remains intact during a whole sequence of program calls. To pass data to a program which you are calling, the data needs to be placed in ABAP memory before the call is made. The internal session of the called program then replaces that of the calling program. The program called can then read from the ABAP memory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 12:32:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory-ids/m-p/3416165#M820482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T12:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: abap memory ids</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory-ids/m-p/3416166#M820483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The EXPORT TO MEMORY and IMPORT FROM MEMORY &lt;/P&gt;&lt;P&gt;using this we can export data from one pgm &amp;amp; can use in another by importing is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP or SAP memory available for use you can see in debug mode. In Debug Mode Goto -&amp;gt; System Areas - SAP Memory/ ABAP memory&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 12:35:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory-ids/m-p/3416166#M820483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T12:35:49Z</dc:date>
    </item>
  </channel>
</rss>

