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

regarding external memory access

Former Member
0 Likes
322

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
295

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

1 REPLY 1
Read only

Former Member
0 Likes
296

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