What is the difference between SAP memory and ABAP memory

Showing Answers 1 - 5 of 5 Answers

ramana reddy

  • Apr 11th, 2006
 

data sending between main sessions using get parameter and set parameter is sap memory

data sending between internal sessions using import or export parameters is abap memory

  Was this answer useful?  Yes

roshini

  • Apr 26th, 2006
 

we can pass data b/w sessions or b/w progs by using sap memory.SET PARAMETER OR GET PARAMETER are the statements that r used to read or write the data from memory.

in abap memory we can only pass the data b/w programs.here we use EXPORT OR IMPORT statements to read or write data from the memory.

  Was this answer useful?  Yes

silpa

  • Jun 5th, 2006
 

sap memory is a global memory whereas abap memory is local memory.

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.

  Was this answer useful?  Yes

podi

  • Jul 3rd, 2006
 

SAP memory is available to the user during the entire terminal session.

ABAP memory is available to the user during life time of external session.

  Was this answer useful?  Yes

sivanagalakshmi

  • Oct 3rd, 2006
 

sap memory is global to all the presentation layers

where as abap memory is created only for one presentation layer

sap memory persists till the application server persists and abap memory persists till the program execution

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions