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

Former Member
0 Likes
506

Hi All,

i am exporting the data from user exit ZXVEDU03 while processing an inbound idoc using the below statement.

EXPORT v_e1edk03-datum TO MEMORY ID 'VBEG'.

here i am able to export the data.

then in the user exit MV45AFZZ i am trying to import the data from the same memory ID using the below statment.

IMPORT v_vbeg FROM MEMORY ID 'VBEG'

but i am not able to import the data. the SY-SUBRC is zero after the import data and the variable v_vbeg is empty

can you please let me know what is wrong in the above statements.

2 REPLIES 2
Read only

Former Member
0 Likes
424

This message was moderated.

Read only

former_member209703
Active Contributor
0 Likes
424

Try this


IMPORT v_e1edk03-datum FROM MEMORY ID 'VBEG'.

When using IMPORT/EXPORT memory access you MUST use the same variable name.

Edited by: Jose Maria Otero on Jul 26, 2011 3:32 PM