‎2007 May 25 5:17 PM
‎2007 May 25 5:20 PM
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
‎2007 May 25 5:20 PM
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
‎2007 May 25 5:21 PM
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.
‎2007 May 25 5:22 PM
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.
‎2007 May 25 5:41 PM
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