‎2008 Mar 18 10:54 AM
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
‎2008 Mar 18 10:58 AM
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.
‎2008 Mar 18 11:13 AM
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.
‎2009 Jul 16 9:32 AM
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