cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP Dump at PT60.

ganesh_borase2
Participant
0 Kudos

Hello everybody,

When I execute the T.code PT60 for 700 Employee, It generate the ABAP DUMP.

Error analysis

The internal table "\FUNCTION-POOL=HRPL\FORM=APPEND_LDATA_LIST\DATA=NAME[]"

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: 80

Number of rows: 3

Allocated rows: 3

Newly requested rows: 128 (in 1 blocks)

How to correct the error

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

Roll area...................... 6221152

Extended memory (EM)........... 3890242816

Assigned memory (HEAP)......... 2000701664

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

Paging area.................... 188416

Maximum address space.......... 4294967295

So please suggest me How to solve the problem?

Thanks

Ganesh

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

You just need to tune some Memory related SAP Kernel Parameters as per your requirement.

just refer the below note...

[SAP Note 146289 - Parameter Recommendations for 64-Bit SAP Kernel|https://service.sap.com/sap/support/notes/146289]

Mainly the below parameters..

em/initial_size_MB
em/blocksize_KB
ztta/roll_first
ztta/roll_area
ztta/roll_extension
abap/heap_area_dia
abap/heap_area_nondia
abap/heap_area_total

Go through the other notes mentioned in above one to understand and calculate values for above parameters.

Below note may also help to tune performance.

[SAP Note 172747 SAP on HP-UX: OS kernel parameter recommendations|https://service.sap.com/sap/support/notes/172747]

[SAP Note 830576 - Parameter recommendations for Oracle 10g|https://service.sap.com/sap/support/notes/830578]

Please note:

You can backup the following thing, in case you want to revert back..

SAP Profiles: (All profiles)

/sapmnt/<SID>/profile

Oracle Parameter file: (init<SID>.ora, spfile<SID>.ora)

/oracle/<SID>/102_64/dbs

If something goes wrong, just restore these files with its proper permissions.

Regards.

Rajesh Narkhede

ganesh_borase2
Participant
0 Kudos

Hi!

Thanks for reply.

When user execute the PT60 for only 200 Employee

that time I check CPU utilization it display 97%

In work process, No work process is in PRIV mode.

Only in the column TIME is display in red and program continue running

If no work process in PRIV mode, then is it require to change the memory parameter values?

Thanks