Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

memory

Former Member
0 Likes
666

HI Guru,

what is the difference bet.sapmemory n abapmemory

7 REPLIES 7
Read only

Former Member
0 Likes
632

Check

;�

<b>ABAP Memmory & SAP Memmory</b>

http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm

Regards,

santosh

Read only

Former Member
0 Likes
632

SAPMEMORY is external memory we use set/get parameter id

ABAP Memory is internal memory we use Import/Export

Read only

Former Member
0 Likes
632

HI

To exchange data between to external sessions we use SAP memory (SET and GET) and to exchage data between two internal session we use ABAP memory (EXPORT and IMPORT).

For detailed information press F1 on either of the above key words (EXPORT/IMPORT/GET/SET).

Regards

Surya.

Read only

Former Member
0 Likes
632

Hi,

SAP Memory :

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

ABAP Memory :

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.

regs

Rakesh

Read only

Former Member
0 Likes
632

Hi surendra raju,

When a person A logs into SAP .... he can access upto 6 sesions/external sessions (windows) parallely he can work on those........

One external session has 9 internal sessions ......

<b>SAP Memory SAP</b> :

Its like a Global memory ..... The data which you store in this memroy are accessible for the entire logon (6 sessions)

SET / GET parameter is used for setting / getting of data from the SAP memory ,...

<b>ABAP Memory</b>:

Its like a Local memory ... data stored in this will be available only to that particular session .......

IMPORT / EXPORT statements are used for Sending / receiving of data from ABAP Memory

For syntax help ... just type in the word and press F1 Function key for detail help

Hope this helps

Cheers

Kripa Rangachari.....

Read only

Former Member
0 Likes
632

Hi,

SAP Memory is external memory associated with external sessions i.e. Using SET/GET parameters statement.

ABAP memory is internal memory asscoiate with internal sessions i.e Using IMPORT/EXPORT MEMORY statement.

Regards

Bhupal Reddy