‎2008 Aug 07 7:50 AM
Hi experts,
I am getting data from standard report to into my program by using
SUBMIT .......................
EXPORTING LIST TO MEMORY.
but the actually it is exceeding the memory size and going to dump
what are the suggestions for this and how to resolve the issue
Please help me in resolving the issue.
‎2008 Aug 07 11:38 AM
HI,
Do it like this.
While export:
C_name = mem_id_name." giving name to that memory place
DATA: EXPORT_MEMORY TYPE C LENGTH 30. " variable for memory ID.
MOVE C_name TO EXPORT_MEMORY.
EXPORT Export_field TO MEMORY ID EXPORT_MEMORY.
While import:
C_name = mem_id_name.
DATA: EXPORT_MEMORY TYPE C LENGTH 30. " variable for memory ID.
MOVE C_name TO EXPORT_MEMORY.
IMPORT Export_field from MEMORY ID export_memory.
Thanks,
Sendil
‎2008 Aug 07 11:38 AM
HI,
Do it like this.
While export:
C_name = mem_id_name." giving name to that memory place
DATA: EXPORT_MEMORY TYPE C LENGTH 30. " variable for memory ID.
MOVE C_name TO EXPORT_MEMORY.
EXPORT Export_field TO MEMORY ID EXPORT_MEMORY.
While import:
C_name = mem_id_name.
DATA: EXPORT_MEMORY TYPE C LENGTH 30. " variable for memory ID.
MOVE C_name TO EXPORT_MEMORY.
IMPORT Export_field from MEMORY ID export_memory.
Thanks,
Sendil