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

abap memory VS sap memory

Former Member
0 Likes
699

What is the difference b/w ABAP MEMORY and SAP MEMORY

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
660

ABAP memory - Transfer data from program to program.

SAP Memory - transfer data from program to Transaction.

When you see 'Export and Import ' and it is ABAP memory'

When you see Set parameter id and get Parameter id and it is called SAP Memory

Reward Points if it is helpful

Thanks

Seshu

4 REPLIES 4
Read only

Former Member
0 Likes
661

ABAP memory - Transfer data from program to program.

SAP Memory - transfer data from program to Transaction.

When you see 'Export and Import ' and it is ABAP memory'

When you see Set parameter id and get Parameter id and it is called SAP Memory

Reward Points if it is helpful

Thanks

Seshu

Read only

Former Member
0 Likes
660

Hi jeevan,

1. SAP Memory is a global memory area which all sessions within a

SAPgui have access to. This allows for passing data between

sessions. The SET PARAMETER ID and GET PARAMETER ID statements are

used to manipulate the SAP Memory.

SET PARAMETER ID 'MAT' field p_matnr.

GET PARAMETER ID 'MAT' field p_matnr.

2. ABAP Memory is a memory area which all programs in the call stack within the same internal session can access. The EXPORT and IMPORT

statements are used here.

export p_matnr = p_matnr to memory id 'ZTESTMAT'.

import p_matnr = p_matnr from memory id 'ZTESTMAT'.

regards,

amit m.

Read only

Former Member
0 Likes
660

Hi,

ABAP Memory is accessible within same session(calling a program from another that used ABAP memory), where as SAP Memory is accessible between multiple sessions(independent of the program that used SAP Memory).

Regards,

Vidya.

Read only

Former Member
0 Likes
660

hi Jeevan,

SAP Memory is a global memory area which all sessions within a

SAPgui have access to. This allows for passing data between

sessions. The SET PARAMETER ID and GET PARAMETER ID statements are

used to manipulate the SAP Memory.

ABAP Memmory & SAP Memmory

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

Regards,

Santosh