Application Development 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: 

TSV_TNEW_PAGE_ALLOC_FAILED: Huge data into onternal table

Former Member
0 Kudos

Hello Experts,

I am selecting data from a database table into one internal table. The internal table was defined using occurs 0. I am getting Short Dump TSV_TNEW_PAGE_ALLOC_FAILED when the data selected from database table is huge. The internal table is unable to hold that amount of huge data.

Can you please suggest how to overcome this using ABAP.

regards.

2 REPLIES 2

Former Member
0 Kudos

2 ways are there:

1. I think you need to take help of Basis guys to change some parameters which suports huge data in to the memory which avoids this

2. Split your internal table in two parts and do your calculations or manupulations....

Hope the solution is prompt.

Former Member
0 Kudos

Hi Sunil,

Try to reduce the selection. If that isn't possible, try to use packet size while selection and do the required calculations.

one more thing is that, try to free the memory space of the internal tables that are not required or export the data to the memory and get it back when required using Import and export statements.