cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP/4 ERROR IN PROCESSCHAIN

Former Member
0 Kudos

Hi experts iam getting error at abap program in processchain

ERROR: ABAP/4 processor: TSV_TNEW_PAGE_ALLOC_FAILED

and it leads to short dump :

What happened?

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

not available.

error analysis:

The internal table "\DATA=G_T_AXIS_V2" 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: 62

Number of rows: 2349872

Allocated rows: 2349872

Newly requested rows: 256 (in 1 blocks)

Source Code Extract :

>>APPEND ls_axis TO g_t_axis_v2.

so please give what is the issue why it has happened and let know the solution.

Thank in advance

Bharati.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

HI experts i have got one ticket from user :he is saying amount showing doubled for projects at columns in workbook and query.

so please give me ideas and serch procedure to find out soltion give step by step analysis ,when iam searching iam not finding any thing because i have to close ticket urgently.

Thanks,

Bharati.

former_member184494
Active Contributor
0 Kudos

You are trying to run RSCRM_BAPI in a process chain and the program is failing because :

1. The amount of data is too large or

2. The query is not executing because it it too large

See if you can :

1. Reduce the query data set

2. Create additional aggregates / indices to make the query run faster.

The query and its filter conditions can be found by going to the ABAP variant in the process chain

Former Member
0 Kudos

solved.

former_member209032
Active Contributor
0 Kudos

Hi,

This is memory related issue. Try to reduce the packet size in DTP or infopackage or modify the code accordingly to avoid the error.

Regards,

Raghavendra.

Former Member
0 Kudos

aaa