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

Import/Export from Memory ID

prince_isaac
Active Participant
0 Likes
608

hie guys

im in a program that is importing values from a memory id however there are no values being imported and thus i want to find out wer the memory id is being given data. i tryd the wer used list and it dd not give me anything, please assist

3 REPLIES 3
Read only

Former Member
0 Likes
582

Hi,

without exporting a value using the syntax,

If this statement is in a program.

report ztest1.
DATA : DATA(5) TYPE C VALUE 'TEST'.
EXPORT DATA TO MEMORY ID 'AAA'.

consider another report.

report ztest1.
DATA : DATA(5) TYPE C VALUE 'TEST'.
IMPORT DATA FROM MEMORY ID 'AAA'.

WRITE:/1 DATA.

Regards,

Balakumar.G.

Reward Points if Helpful.

Read only

Former Member
0 Likes
582

Hi,

You cannot import any value from a memory id if u do not have any explicit export statement in any program.

So check that out first. Make sure that u have data in the memory id ur importing values from. U can check this out from the program wherein ur memory id is defined and some values are exported to it.

Read only

prince_isaac
Active Participant
0 Likes
582

hie guys

i managed to find the corresponding program where the memory-id was being called and managed to rectify the fault. many thanx for yo contributions.

regards

Isaac Prince