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

ABAP/4 processor: TSV_TNEW_PAGE_ALLOC_FAILED

Former Member
0 Likes
463

While running the job...it leads to dump.....

No storage space available for extending table "IT_64".

You attempted to extend an internal table, but the required space was

not available.

WHat may be the reason behind the failure....?

3 REPLIES 3
Read only

Former Member
0 Likes
425

talk to basis guy,in my company jobs are running more than 10 hours,basis guy needs to be set up time,so that your program runs in background without dump.

It is memory problem and they have to setup internal table memory time.

Reward Points if it is helpful

Thanks

Seshu

Read only

Former Member
0 Likes
425

You are max-ing out the memory on the App server. Is this a custom program that is dumping?

Read only

0 Likes
425

If the prog is custom, look into re-coding it a bit. IT_64 should be reduced to contain fields that are ONLY required to meet the business needs. Remove any fields that are needed.

Also - make sure that ONLY required records are loaded into the int table during execution. Don't load any "junk-and-trash" records that are not actually needed.

Past that, speak to your Basis Team. They CAN increase the available memory for your program... but they WILL want to know why. They would want you to re-code if custom... or contact SAP if it is a core program.