2010 Jan 13 3:22 AM
Hi,
I am using SUBMIT with EXPORTING LIST TO MEMORY AND RETURN via function module.
On debug mode, after IMPORT <itab> FROM MEMORY ID <id_text>, I get this runtime error: CONNE_IMPORT_WRONG_OBJECT_TYPE.
Has anybody encountered this error? Kindly update me if you have any idea.
Thank you!
2010 Jan 13 3:30 AM
You may need to use shared memory buffer while using IMPORT/EXPORT
like
EXPORT p1 = text1 p2 = text2 TO SHARED BUFFER indx(XY) ID id.
IMPORT p1 = text2 p2 = text1 FROM SHARED BUFFER indx(XY) ID id.
DELETE FROM SHARED BUFFER indx(XY) ID id.
http://help.sap.com/saphelp_45b/helpdata/en/34/8e73a36df74873e10000009b38f9b8/content.htm
http://help.sap.com/abapdocu_70/en/ABAPDELETE_CLUSTER.htm
a®
2010 Jan 13 3:30 AM
You may need to use shared memory buffer while using IMPORT/EXPORT
like
EXPORT p1 = text1 p2 = text2 TO SHARED BUFFER indx(XY) ID id.
IMPORT p1 = text2 p2 = text1 FROM SHARED BUFFER indx(XY) ID id.
DELETE FROM SHARED BUFFER indx(XY) ID id.
http://help.sap.com/saphelp_45b/helpdata/en/34/8e73a36df74873e10000009b38f9b8/content.htm
http://help.sap.com/abapdocu_70/en/ABAPDELETE_CLUSTER.htm
a®
2010 Jan 13 5:23 AM