<?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: diff between sap memory and abap memory in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-sap-memory-and-abap-memory/m-p/2551377#M581006</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;         SAP and ABAP Memory &lt;/P&gt;&lt;P&gt;There is a difference between the cross-transaction SAP memory and the transaction-specific ABAP memory. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global SAP memory &lt;/P&gt;&lt;P&gt;The global SAP 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 SET PARAMETER and GET PARAMETER statements allow you to write to, or read from, the SAP memory. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input fields on screens can be linked with parameters in the SAP memory, which allows you to preassign values to the input fields on initial screens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With general screens, the linking takes place during the definition of the screen using the Screen Painter tool. When setting the field attributes of an input field, you can specify the ID of an SPA/GPA parameter in the Parameter-ID attribute. In the checkboxes SET Parameter and GET Parameter you can specify whether the screen field is filled with the value of the SPA/GPA parameter at the time of PBO or whether the SPA/GPA parameter is filled with the user input on the screen at the time of PAI. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With selection screens, the linking is carried out using the MEMORY ID addition to the PARAMETERS or SELECT-OPTIONS statement. If you specify an SPA/GPA parameter ID, when declaring a parameter or selection criterion, the relevant input field is linked with the parameter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Local SAP memory &lt;/P&gt;&lt;P&gt;The local SAP memory is available to the user throughout a transaction, within which you can also call other program units, for example using SUBMIT or CALL TRANSACTION. With SET PARAMETER you write to both the global and the local SAP memory. If the global SAP memory is changed by an external mode of the same user, the local SAP memory remains unchanged. This ensures that parameters set in the frame of a transaction remain unchanged until the end of this transaction. The local SAP memory is deleted after the transaction is ended. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP memory &lt;/P&gt;&lt;P&gt;The contents of the ABAP memory are retained only during the lifetime of an external session (see also Organization of Modularization Units). You can retain or pass data across internal sessions. 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;Please consult Data Area and Modularization Unit Organization documentation as well. &lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;Memory Structures of an ABAP Program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jul 2007 06:54:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-16T06:54:55Z</dc:date>
    <item>
      <title>diff between sap memory and abap memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-sap-memory-and-abap-memory/m-p/2551374#M581003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;      actually i want to know about the difference between sap memory and abap memory..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;jj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 05:57:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-sap-memory-and-abap-memory/m-p/2551374#M581003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T05:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: diff between sap memory and abap memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-sap-memory-and-abap-memory/m-p/2551375#M581004</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;The difference is SAP memory is for sharing across External Sessions (One Main Window) Where as ABAP memory is for sharing between internal sessions of an external session.&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>Mon, 16 Jul 2007 05:58:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-sap-memory-and-abap-memory/m-p/2551375#M581004</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-16T05:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: diff between sap memory and abap memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-sap-memory-and-abap-memory/m-p/2551376#M581005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;ABAP Memory&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt; &lt;/P&gt;&lt;P&gt;Memory area within every main session, which the programs with the statements EXPORT and IMPORT can access. This memory area is maintained via a succession of program calls (call sequence). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;SAP Memory&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt; &lt;/P&gt;&lt;P&gt;Memory area of application server, which all main sessions of a user session access jointly. ABAP programs have access to SPA/GPA parameters stored in the SAP memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give point if helpful&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;debjani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 06:46:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-sap-memory-and-abap-memory/m-p/2551376#M581005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T06:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: diff between sap memory and abap memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-sap-memory-and-abap-memory/m-p/2551377#M581006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;         SAP and ABAP Memory &lt;/P&gt;&lt;P&gt;There is a difference between the cross-transaction SAP memory and the transaction-specific ABAP memory. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global SAP memory &lt;/P&gt;&lt;P&gt;The global SAP 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 SET PARAMETER and GET PARAMETER statements allow you to write to, or read from, the SAP memory. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input fields on screens can be linked with parameters in the SAP memory, which allows you to preassign values to the input fields on initial screens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With general screens, the linking takes place during the definition of the screen using the Screen Painter tool. When setting the field attributes of an input field, you can specify the ID of an SPA/GPA parameter in the Parameter-ID attribute. In the checkboxes SET Parameter and GET Parameter you can specify whether the screen field is filled with the value of the SPA/GPA parameter at the time of PBO or whether the SPA/GPA parameter is filled with the user input on the screen at the time of PAI. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With selection screens, the linking is carried out using the MEMORY ID addition to the PARAMETERS or SELECT-OPTIONS statement. If you specify an SPA/GPA parameter ID, when declaring a parameter or selection criterion, the relevant input field is linked with the parameter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Local SAP memory &lt;/P&gt;&lt;P&gt;The local SAP memory is available to the user throughout a transaction, within which you can also call other program units, for example using SUBMIT or CALL TRANSACTION. With SET PARAMETER you write to both the global and the local SAP memory. If the global SAP memory is changed by an external mode of the same user, the local SAP memory remains unchanged. This ensures that parameters set in the frame of a transaction remain unchanged until the end of this transaction. The local SAP memory is deleted after the transaction is ended. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP memory &lt;/P&gt;&lt;P&gt;The contents of the ABAP memory are retained only during the lifetime of an external session (see also Organization of Modularization Units). You can retain or pass data across internal sessions. 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;Please consult Data Area and Modularization Unit Organization documentation as well. &lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;Memory Structures of an ABAP Program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 06:54:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-sap-memory-and-abap-memory/m-p/2551377#M581006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T06:54:55Z</dc:date>
    </item>
  </channel>
</rss>

