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

Memory space issue

Former Member
0 Likes
660

Hi,

I am facing problem in a utility program and it is runing into short dump saying: 'Unable to fulfill request for 8192 bytes of memory space'. Can anyone tell me about this.

Whats might be problamatic here? This utility program captures changes in material fields and prepare XML out of it. This was run for around 20K parts and it got dump at particular point. From the code it seems all fine.

Also from the dump analysis (ST22) i picked up the record for which it was showing dump and executed the program for same single record and all ends in fine results. so there was no issue with data.

Plse provide possible inputs for solution.

Thanks,

Ags.

5 REPLIES 5
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
626

Sounds like it is running out of memory to use, you should try freein up some space, for example, if you have an internal table which has data, but is not longer going to be used for the rest of the program, then use the FREE statement to free up the memory.

FREE ITAB.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
626

Is this a standard SAP program or a custom one?

Rob

Read only

0 Likes
626

This code is standard SAP code but copied into Z to customize it.

Read only

0 Likes
626

What was the original report? I'm wondering if there are SAP notes to help you on this.

Rob

Read only

Former Member
0 Likes
626

dump normally occurs if data is unable to get hold in internal tables. Mostly it is getting memory overfloe due to which data is not getting stored in the internal table...Try processing for lesser materials or in 2-3 steps where each step can hold some 8k of records.