‎2011 Jul 26 2:17 PM
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.
‎2011 Jul 26 2:29 PM
‎2011 Jul 26 2:31 PM
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