Skip to Content
0
Former Member
May 18, 2010 at 07:43 AM

Export/Import Internal Table

34 Views

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