Application Development 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: 

how to get the specific abap from a given memory id

Former Member
0 Kudos

hi ,

if we have IMPORT statement with a specific memory id in an ABAP, then how do we find out the EXPORT statement belonging to that memory id ???

for eg: consider a abap XYZ where we have a statement like :

IMPORT WORKTAB FROM MEMORY ID 'YSYPARACOMP'.

where the memory id is : YSYPARACOMP

now my question is " HOW DO WE KNOW FROM WHICH ABAP THIS MEMORY ID HAS BEEN EXPORTED??? "

or do we have ant standard trnsaction code for it ??

a quick response on this will be highly appreciated.

With best regards

Thrivikram,

1 REPLY 1

Former Member
0 Kudos

The contents of the ABAP/4 memory are retained only during the lifetime of an external session (see also Organization of Modularization Units). You can retain or pass data across internal sessions. The EXPORT TO MEMORY and IMPORT FROM MEMORY statements allow you to write data to, or read data from, the ABAP memory.

I dont think you can see the abap memory ids from any transaction or Table. Its userdefined.

Regards,

Phani.