<?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/2644999#M609151</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;regards&lt;/P&gt;&lt;P&gt;subbu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Aug 2007 05:06:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-23T05:06:48Z</dc:date>
    <item>
      <title>abap memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2644998#M609150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can anyone tell me what are abap memory and sap memory?&lt;/P&gt;&lt;P&gt; how to use them and where wil we use them?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:05:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2644998#M609150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T05:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: abap memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2644999#M609151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;regards&lt;/P&gt;&lt;P&gt;subbu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:06:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2644999#M609151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T05:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: abap memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2645000#M609152</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;&lt;/P&gt;&lt;P&gt;SAP Memory&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). These parameters can be set either for a particular user or for a particular program using the SET PARAMETER statement. Other ABAP programs can then retrieve the set parameters using the GET PARAMETER statement. The most frequent use of SPA/GPA parameters is to fill input fields on screens (see below).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP 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. If control is then returned to the program which made the initial call, the same process operates in reverse. For further information&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:07:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2645000#M609152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T05:07: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/2645001#M609153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uttam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SAP Memory is a global memory area which all sessions within a&lt;/P&gt;&lt;P&gt;SAPgui have access to. This allows for passing data between&lt;/P&gt;&lt;P&gt;sessions. The SET PARAMETER ID and GET PARAMETER ID statements are&lt;/P&gt;&lt;P&gt;used to manipulate the SAP Memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'MAT' field p_matnr.&lt;/P&gt;&lt;P&gt;GET PARAMETER ID 'MAT' field p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ABAP Memory is a memory area which all programs in the call stack within the same internal session can access. The EXPORT and IMPORT&lt;/P&gt;&lt;P&gt;statements are used here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export p_matnr = p_matnr to memory id 'ZTESTMAT'.&lt;/P&gt;&lt;P&gt;import p_matnr = p_matnr from memory id 'ZTESTMAT'.&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;sandhya&amp;lt;a href="http://"&amp;gt;http://&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:08:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2645001#M609153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T05:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: abap memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2645002#M609154</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;1.SAP memory is for cross-transaction Applications and ABAP/4 memory is transaction-specific.&lt;/P&gt;&lt;P&gt;2. The SAP memory, otherwise known as the global memory, is available to a user during the entire duration of a terminal session. Its contents are retained across transaction boundaries as well as external and internal sessions. The contents of the ABAP/4 memory are retained only during the lifetime of an external session. You can retain or pass data across internal sessions.&lt;/P&gt;&lt;P&gt;3. The SET PARAMETER and GET PARAMETER statements allow you to write to, or read from, the SAP memory. The EXPORT TO MEMORY and IMPORT FROM MEMORY statements allow you to write data to, or read data from, the ABAP memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;External session: - when user logs on to R/3 system, the system  Create&amp;amp;#61664;creates a new terminal session called external session. E.g. System  Session.&lt;/P&gt;&lt;P&gt;Internal session: - created by calling a transaction (with CALL TRANSACTION), a dialog module (with CALL DIALOG) or a report (with SUBMIT or RETURN).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For External Sessions, Internal Sessions are available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP Memory is a global memory area which all sessions within a&lt;/P&gt;&lt;P&gt;SAPgui have access to. This allows for passing data between&lt;/P&gt;&lt;P&gt;sessions. The SET PARAMETER ID and GET PARAMETER ID statements are&lt;/P&gt;&lt;P&gt;used to manipulate the SAP Memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'MAT' field p_matnr.&lt;/P&gt;&lt;P&gt;GET PARAMETER ID 'MAT' field p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP Memory is a memory area which all programs in the call stack within the same internal session can access. The EXPORT and IMPORT&lt;/P&gt;&lt;P&gt;statements are used here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export p_matnr = p_matnr to memory id 'ZTESTMAT'.&lt;/P&gt;&lt;P&gt;import p_matnr = p_matnr from memory id 'ZTESTMAT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP memory -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; Memory related to that particular session&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP memory -&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;&amp;gt; memory related to all sessions &lt;/P&gt;&lt;P&gt;ABAP Memmory &amp;amp; SAP Memmory&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://www.sap-img.com/abap/type-and-uses-of-lock-objects-in-sap.htm" target="test_blank"&gt;http://www.sap-img.com/abap/type-and-uses-of-lock-objects-in-sap.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/SiliconValley/Campus/6345/set_para.htm" target="test_blank"&gt;http://www.geocities.com/SiliconValley/Campus/6345/set_para.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/SiliconValley/Campus/6345/get_para.htm" target="test_blank"&gt;http://www.geocities.com/SiliconValley/Campus/6345/get_para.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/SiliconValley/Campus/6345/export01.htm" target="test_blank"&gt;http://www.geocities.com/SiliconValley/Campus/6345/export01.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other Imp Help&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/SiliconValley/Campus/6345/abapindx.htm" target="test_blank"&gt;http://www.geocities.com/SiliconValley/Campus/6345/abapindx.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:08:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2645002#M609154</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-08-23T05:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: abap memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2645003#M609155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uttam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP memory is the global memory which you can share through out the sessions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While ABAP memory is a local memory within a session, which is used by a particular program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have a humble reuqest uttam, please search in the forum before posting a thread..&lt;/P&gt;&lt;P&gt;This question has been asked hundreds of times. U might be knowing this since u may be a new member to the forum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:10:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2645003#M609155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T05:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: abap memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2645004#M609156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Abap memory and SAP memory are used to store the data for some time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;both are used tpo transfer the data between programs&lt;/P&gt;&lt;P&gt;ABAP memory will work in continuous sessions only but SAP memory works in parallel also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP memory is used with export and import parameters and SAP memory with GET and SET parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward Points if Useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:11:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-memory/m-p/2645004#M609156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T05:11:09Z</dc:date>
    </item>
  </channel>
</rss>

