Pages

Sunday, 28 April 2013

What is the difference between SAP memory and ABAP memory?


1.SAP MEMORY is a global memory
data sending between main sessions using get parameter and set parameter is sap memory.
SAP memory is available to the user during the entire terminal session.

2.ABAP MEMORY is local memory.
data sending between internal sessions using import or export parameters is abap memory.
ABAP memory is available to the user during a life time a of a external session.


For example, we have four programs in abap memory and assigned some varibles to a particular program in abap memory then those varibles can't be used by anyother program in abap memory i.e., the variables are only for that program and also local to that memory,whereas sap memory can access all the abap memory or else it can perform any kind of modifications.

No comments:

Post a Comment