Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

abap memory ids

Former Member
0 Likes
503

Hi friends,

can u please tell me what does this mean-:

IMPORT wa_qave FROM MEMORY ID 'WA_QAVE'. and what is WA_QAVE and where can i find these memory ids in SAP.

3 REPLIES 3
Read only

Former Member
0 Likes
474

ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. Data within this area remains intact during a whole sequence of program calls. To pass data to a program which you are calling, the data needs to be placed in ABAP memory before the call is made. The internal session of the called program then replaces that of the calling program. The program called can then read from the ABAP memory. If control is then returned to the program which made the initial call, the same process operates in reverse.

Regards,

Santosh

Read only

Former Member
0 Likes
474

Hi we can upload data into ABAP memory using EXPORT statement and we can get the data into another program using IMPORT statement. Here is some info on ABAP memory. the W_* is the name given by you to the memory location. you can give any name. and must use the same name to import the data from memory.

ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. Data within this area remains intact during a whole sequence of program calls. To pass data to a program which you are calling, the data needs to be placed in ABAP memory before the call is made. The internal session of the called program then replaces that of the calling program. The program called can then read from the ABAP memory.

Read only

Former Member
0 Likes
474

The EXPORT TO MEMORY and IMPORT FROM MEMORY

using this we can export data from one pgm & can use in another by importing is

http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm

http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm

ABAP or SAP memory available for use you can see in debug mode. In Debug Mode Goto -> System Areas - SAP Memory/ ABAP memory