cancel
Showing results for 
Search instead for 
Did you mean: 

memory concept.

Former Member
0 Kudos

hi,

what is difference between abap memory and sap memory, pls explain briefly..?

pls dont tell sap memory means set parameter and get parameter.

                    abap memory means import and export.

thanks in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

rachna_srivastava2
Discoverer
0 Kudos

Hi Chinnapa ,

SAP memory describes a memory area to which all main sessions within a SAP GUI have access. Data can be passed from one program to another within the same session or from one session to another.SAP memory uses set parameter and get parameter for passing data from one session to another.

SAP memory is referred to as global memory.

ABAP memory describes a memory area in the internal session of an ABAP program. It can be accessed by all ABAP programs within the same internal session.ABAP memory makes use of export and import commands in calls made to another internal session within a single main session.

ABAP  memory is referred as local memory.