Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

EXPORT IMPORT STATEMENT NOT WORKING

Former Member
0 Likes
1,129

hI

I AM USING THE FOLLOWING STATEMENT BUT THE VALUES ARE NOT COMING IN THE TABLE ACTOR_TAB1

SUBMIT ZDISPLAY3 WITH P_MFRNR = P_MFRNR

WITH P_GFELD = P_GFELD AND RETURN

.

IMPORT ACTOR_TAB1 = ACTOR_TAB1 FROM MEMORY ID 'KAKAL_INS'.

IN REPORT ZDISPLAY3 I AM USING THE FOLLOWING STATEMENT

EXPORT ACTOR_TAB = ACTOR_TAB TO MEMORY ID 'KAKAL_INS'.

IN INTERNAL TABLE ACTOR_TAB1 VALUE IS NOT COMING CAN ANY BODY TELLY WHY VALUE IS NOT GETTING POPULATED

4 REPLIES 4
Read only

jayanthi_jayaraman
Active Contributor
0 Likes
676

Hi,

IMPORT ACTOR_TAB FROM MEMORY ID 'KAKAL_INS'.

EXPORT ACTOR_TAB TO MEMORY ID 'KAKAL_INS'.

Read only

Former Member
0 Likes
676

Hi Srinivas

Apart from the advice given by Jayanti, please make sure that the <b>structures of internal tables are same</b> in both programs.

Kind Regards

Eswar

Read only

Former Member
0 Likes
676

Hi !

Try to give the exported tabel and the imported tabele the same structure AND the same NAME !!

Just for fun... I'vd had some bad effects like you have...

Regards

Rainer

Some points would be nice if that helped.

Read only

Former Member
0 Likes
676

Hi kota,

1. When u use memory id, make sure of the

following points.

a) The memory id is SAME as the variable name

b) Memory id should be in CAPITAL

c) When u want to import,

the variable name should be same as original one,

and should be declared in the same fashion only.

regards,

amit m.