Hi,
I have written following code in shilpment user_exit "EXIT_SAPLV56U_002"
DATA: TEST(5) type c value 'TEXT1'.
EXPORT I_XVTTK TO MEMORY ID TEST.
and i am importing I_XVTTK table in delivery user_exit "EXIT_SAPLV09A_002'.
DATA : TEST(5) TYPE c VALUE 'TEXT1'.
DATA : BEGIN OF I_XVTTK OCCURS 0.
INCLUDE STRUCTURE vttkvb.
DATA : END OF I_XVTTK.
IMPORT I_XVTTK FROM MEMORY ID TEST.
but the I_XVTTK structure is comming blank.
Can anyone tel me why this is happening....
Thanks