Difference between SAP memory and ABAP memory
SAP memory:
SAP memory is global and can be accessed across the main session.
The get parameter and set parameter are used to write and read to SAP memory.
The objects stored in the SAP memory will be accessible by all the programs within the single login session. It will be cleared after we log out.
ABAP memory:
ABAP memory is local and can only be accessed in internal sessions.
Import from memory and Export to memory are used for ABAP memory.
The object stored in ABAP memory will only be available within the program. It will be cleared once the program ends.
Comments
Post a Comment