<?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: memory in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory/m-p/2785568#M649409</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;There are two types of memory areas in SAP. the ABAP memory is the part of memory which is allocated to a program on runtime..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This program runs in a session, so this memory is called session memory too.. all programs running in a same session have access to this memory.. like if one program is calling another program, then the second program can also access this memory..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This memory is used by keywords IMPORT and EXPORT..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second type is SAP Memory, unlike the session memory, this memory is inter session memory, this memory can be accessed by programs running in different sessions..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is used by keywords SET and GET..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Vikas Bittera.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 01 Sep 2007 03:44:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-01T03:44:43Z</dc:date>
    <item>
      <title>memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory/m-p/2785566#M649407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the difference between SAP memory and ABAP memory pls tell me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Sep 2007 03:26:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory/m-p/2785566#M649407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-01T03:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory/m-p/2785567#M649408</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;SAP memory is a memory area to which all main sessions within a SAPgui have access. You can use SAP memory either to pass data from one program to another within a session, or to pass data from one session to another. Application programs that use SAP memory must do so using SPA/GPA parameters (also known as SET/GET parameters).&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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Sep 2007 03:32:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory/m-p/2785567#M649408</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-09-01T03:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory/m-p/2785568#M649409</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;There are two types of memory areas in SAP. the ABAP memory is the part of memory which is allocated to a program on runtime..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This program runs in a session, so this memory is called session memory too.. all programs running in a same session have access to this memory.. like if one program is calling another program, then the second program can also access this memory..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This memory is used by keywords IMPORT and EXPORT..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second type is SAP Memory, unlike the session memory, this memory is inter session memory, this memory can be accessed by programs running in different sessions..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is used by keywords SET and GET..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Vikas Bittera.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Sep 2007 03:44:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory/m-p/2785568#M649409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-01T03:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory/m-p/2785569#M649410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Very easily saying sap memory is the global memory and abap memory is the local memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;jinesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Sep 2007 03:52:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory/m-p/2785569#M649410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-01T03:52:02Z</dc:date>
    </item>
  </channel>
</rss>

