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

TSV_TNEW_PAGE_ALLOC_FAILED

hymavathi_oruganti
Active Contributor
0 Likes
931

Hi,

I am getting runtime error "TSV_TNEW_PAGE_ALLOC_FAILED ".

what can i do to avoid this dump?

I understand that using "package size" option with select statement into internal table may solve this problem.

But to fill the internal table we are not using select statement , infact we are getting data into itab using "read dataset" from application server.

Can any one help me in solving this problem.

Thanks in advance.

Hi,

I am getting runtime error "TSV_TNEW_PAGE_ALLOC_FAILED ".

what can i do to avoid this dump?

I understand that using "package size" option with select statement into internal table may solve this problem.

But to fill the internal table we are not using select statement , infact we are getting data into itab using "read dataset" from application server.

Can any one help me in solving this problem.

Thanks in advance.

6 REPLIES 6
Read only

Former Member
0 Likes
841

When you select data into internal table, SAP allocates memory for the selected data. When there is no enogh memory you get this error.

Basis team can change the parameter to allocate more space, please contact them to change system parameters.

Read only

ThomasZloch
Active Contributor
0 Likes
841

You can implement block processing also with READ DATASET, should the process logic allow for that.

Within your read loop, you collect x records in an internal table, then do the processing of the data, refresh the internal table, then continue reading the next x records, and so on.

Before increasing memory space as suggested above, always try to tune the program code first.

Greetings

Thomas

Read only

alison_lloyd
Active Participant
0 Likes
841

Where are you getting the error in the selection or when outputting? If the later are you using ALV?

Read only

former_member435013
Active Participant
0 Likes
841

Hi,

Does the implemented functionality require so much data in memory at one time?

Often there are too many entries in internal tables without releasing them.

You should focus on that.

Probably code is not very sophisticated. Storage is not released when it is not used any more.

Regards

Walter Habich

Read only

0 Likes
841

Hi,

You have to follow this note 896886

My best regards

Read only

0 Likes
841

Hi,

Any reason to answer a Year Old Question which is even not followed by the thread starter.

This is a Duplicate/Cross post of in .

Regards

Karthik D