cancel
Showing results for 
Search instead for 
Did you mean: 

Runtime Errors TSV_TNEW_PAGE_ALLOC_FAILED

Former Member
0 Kudos

Hello All,

I am getting this error while deletign Competencies for Employees in tcode PA30. This was workign fine before but suddenly now it is showing up this message Runtime Errors TSV_TNEW_PAGE_ALLOC_FAILED when soebody want to save new Competency for an Employee. Although some of them works fine only few of them have problem.

I tried to increase these Profile parameters to the value below but i am still gettign the same error.

ztta/roll_area = 10618272

ztta/roll_extension = 400000000

abap/heap_area_total = 1500204032

abap/heap_area_dia = 1000000000

abap/heap_area_nondia = 1000000000

This is the excerpts from ST22 tcode

Short text

No more storage space available for extending an internal table.

What happened?

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

not available.

What can you do?

Note which actions and input led to the error.

For further help in handling the problem, contact your SAP administrator

You can use the ABAP dump analysis transaction ST22 to view and manage

termination messages, in particular for long term reference.

Try to find out (e.g. by targetted data selection) whether the

transaction will run with less main memory.

If there is a temporary bottleneck, execute the transaction again.

-

If the error persists, ask your system administrator to check the

following profile parameters:

o ztta/roll_area (1.000.000 - 15.000.000)

Classic roll area per user and internal mode

usual amount of roll area per user and internal mode

o ztta/roll_extension (10.000.000 - 500.000.000)

Amount of memory per user in extended memory (EM)

o abap/heap_area_total (100.000.000 - 1.500.000.000)

Amount of memory (malloc) for all users of an application

server. If several background processes are running on

one server, temporary bottlenecks may occur.

Of course, the amount of memory (in bytes) must also be

available on the machine (main memory or file system swap).

Caution:

The operating system must be set up so that there is also

enough memory for each process. Usually, the maximum address

space is too small.

Ask your hardware manufacturer or your competence center

about this.

In this case, consult your hardware vendor

abap/heap_area_dia: (10.000.000 - 1.000.000.000)

Restriction of memory allocated to the heap with malloc

for each dialog process.

Parameters for background processes:

abap/heap_area_nondia: (10.000.000 - 1.000.000.000)

Restriction of memory allocated to the heap with malloc

for each background process.

Other memory-relevant parameters are:

em/initial_size_MB: (35-1200)

Extended memory area from which all users of an

application server can satisfy their memory requirement.

Error analysis

The internal table "\CLASS=CL_IM_HRPIQ00COMPRESUPD\METHOD=CLASSIFY_RESULTS_ON_O

PN\DATA=LT_PLOG_TAB" could not be further extended. To enable

error handling, the table had to be delete before this log was written.

As a result, the table is displayed further down or, if you branch to

the ABAP Debugger, with 0 rows.

At the time of the termination, the following data was determined for

the relevant internal table:

Memory location: "Session memory"

Row width: 2186

Number of rows: 0

Allocated rows: 3

Newly requested rows: 1508 (in 377 blocks)

How to correct the error

The amount of storage space (in bytes) filled at termination time was:

Roll area...................... 10357360

Extended memory (EM)........... 402224640

Assigned memory (HEAP)......... 1000000480

Short area..................... " "

Paging area.................... 237568

Maximum address space.......... " "

If the error occures in a non-modified SAP program, you may be able to

find an interim solution in an SAP Note.

If you have access to SAP Notes, carry out a search with the following

keywords:

"TSV_TNEW_PAGE_ALLOC_FAILED" " "

"CL_IM_HRPIQ00COMPRESUPD=======CP" or "CL_IM_HRPIQ00COMPRESUPD=======CM005"

"CLASSIFY_RESULTS_ON_OPN"

Mani

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member189546
Active Contributor
0 Kudos

Hello,

Check your memory parameters with

note 88416

regards,

John Feely

Former Member
0 Kudos

Hi, this situation are on only one of your application servers, or you have central system ?

Maybe the extended memory are in use with other WP's (try to check memory allocation by users in sm04) and are not enough?

Check the st02 Extended memory allocation.

Also first of all try to ask your ABAP-s may be some one creat new report or functional module ?

Check in STMS latest imports, before this situation are coming.

P.S. your server configuration are ? Main memory and other ?

Because the parameter's you provided are really not so big for productive server's ...

Regards.

Former Member
0 Kudos

Well this is not a production system but its a Sales demo system (its like production system to us), but only few people use this like 5-10 users.

We did a new transport package import, does it going to have any impact on the same? i dont think so.

My server detail

Machine detail: RAM: 32gb (100gb additional Virtual memory)

HD: 1tb

CPU- Intel(R) Xeon(R) CPU X5550@2.67GHz

OS: windows 2003 server with MSSQL 2005 server as backend for SAP ECC6 EHP4

the same host machine also have TREX 7.1 installed with Embedded Search functionality Active (For SAP HR TREX indexing)

Mani

Former Member
0 Kudos

You have good server but badly configured SAP MEMORY parameters...

Since you have Windows installation you only need to set the PHYS_MEMSIZE per note

Note 88416 - Zero administration memory management as of 4.0A/ Windows

and remove other memory parameters (not SAP buffer parameters ) as abap/heap_area_dia , em/initial_size_MB,

and other. Your calculation are not so difficult , PHYS_MEMSIZE= 32GB - A(for OS) -X(for Trex) -Y(for MSSQL) -R(for other sap areas as Buffers and WP's)- D(if you have other application).

P.S. about buffer parameters as you have x64 you are not limited to the values in general -->

Note 146289 - Parameter Recommendations for 64-Bit SAP Kernel

1,2,4.

Regards.

markus_doehr2
Active Contributor
0 Kudos

> I am getting this error while deletign Competencies for Employees in tcode PA30. This was workign fine before but suddenly now it is showing up this message Runtime Errors TSV_TNEW_PAGE_ALLOC_FAILED when soebody want to save new Competency for an Employee. Although some of them works fine only few of them have problem.

> I tried to increase these Profile parameters to the value below but i am still gettign the same error.

I'd open an OSS call for this, this seems to be an error in one of the subroutines.

Markus