cancel
Showing results for 
Search instead for 
Did you mean: 

2LIS_18_I0ITEM delta gives dump

Former Member
0 Kudos

Hi All,

I am trying to do a delta upload from the standard datasource 2LIS_18_I0ITEM .

It used to work fine previously, but now it gives a short dump as follows:

Runtime Errors COMPUTE_BCD_OVERFLOW

Exceptn CX_SY_ARITHMETIC_OVERFLOW

Date and Time 29.08.2008 12:23:02

ShrtText

Overflow for arithmetical operation (type P) in program "SAPLV03C"

What happened?

Error in ABAP application program.

The current ABAP program "SAPLV03C" had to be terminated because one of the

statements could not be executed.

This is probably due to an error in the ABAP program.

A value does not fit in a calculation field.

Also, in the source code, it shows an error in the line

E_TDIFF = E_TDIFF + ( DAYDIFF * 240000 ).

Kindly help.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

You must change the data type of E_TDIFF, or redefine as wide type P or use float type, because E_TDIFF has been overflow due the operation done.

Former Member
0 Kudos

Hi Oscar,

Thnx for your reply.

But how do i change the data type??

It is a standard program

Former Member
0 Kudos

Is this sentence standard?

E_TDIFF = E_TDIFF + ( DAYDIFF * 240000 ).

Then you can't do it, try to look for any OSS note.

Former Member
0 Kudos

Yes this sentence is standard

Former Member
0 Kudos

See note 894410 - Short dump during transportation and shipment scheduling

Former Member
0 Kudos

Thnx for the Note, but in my case i have the following:

Missing RAISING Clause in Interface

Program SAPLV03C

Include LV03C$14

Row 5

Module type (FUNCTION)

Module Name SD_CALC_DURATION_FROM_DATETIME

Trigger Location of Exception

Program SAPLV03C

Include LV03CU14

Row 73

Module type (FUNCTION)

Module Name SD_CALC_DURATION_FROM_DATETIME

Any help on this??

Former Member
0 Kudos

Missing RAISING Clause in Interface

Program SAPLV03C

Include LV03C$14

Row 5

Module type (FUNCTION)

Module Name SD_CALC_DURATION_FROM_DATETIME

Trigger Location of Exception

Program SAPLV03C

Include LV03CU14

Row 73

Module type (FUNCTION)

Module Name SD_CALC_DURATION_FROM_DATETIME

could anybody suggest oss note for this .

-


> E_TDIFF = E_TDIFF + ( DAYDIFF * 240000 ).

Former Member
0 Kudos