Hello Guys,
I have written the following code to Export and then Import an Internal Table:
FOR EXPORT
Data : I_EQUI LIKE EQUI,
EQUI_TABLE LIKE EQUI.
EXPORT TI_EQUI TO MEMORY ID 'EQUI_TABLE'.
FOR IMPORT
Data : I_EQUI LIKE EQUI,
TI_EQUI LIKE EQUI,
EQUI_TABLE LIKE EQUI.
IMPORT TI_EQUI FROM MEMORY ID 'EQUI_TABLE'.
When i run the code it leads me to Dump with th error:
The object "TI_EQUI" has a different object type in the dataset from
*that in the target program "/SAPPSPRO/SAPLMATE".
Please Suggest .
Regards,
Najam