Application Development 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: 

getting dump

Former Member
0 Kudos

Hi all,

When I am executing the report I am getting the below error , How do i correct that.

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

regards,

Ajay Reddy

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Increase the length of the variable(Type P).

Kind Regards

Eswar

6 REPLIES 6

Former Member
0 Kudos

Increase the length of the variable(Type P).

Kind Regards

Eswar

Former Member
0 Kudos

Hi,

Overflow for arithmetical operation (type P) in program

For this error U need to increase the the length of the variable of type p.

Regards,

Jagadish

0 Kudos

hi ajay,

i got it ur problem.

you are doing some mathamatical operation .

and you are storing result into variable. That variable is not capable to hold that value that's why you are getting dump.

you can change data type length to make it capable.

Give rewards if helpful.

Former Member
0 Kudos

Try to increase the length of the variable for which UR getting DUMP ..

use ...

data : v_data type WERT12.

Former Member
0 Kudos

Hi,

The calculated value is overflow its size limit, which means if you declared a variable with length 8 and the calculated value has 12 digits in that then this kind of error should raise. So check your dump analysis where exactly you will get dump and also check the declaration part for that variable.

Rgds,

Bujji

Former Member
0 Kudos

Run the report once again and you will get the dump in the application tool bar you have option debugging.

press that button and the cursor will stop there where the dump is coming.

Place the break point top to that statement.

and save.

Then execute the same program again and the execution stops over there where you have set the break point.

And analyse the same why it is givng the error.

Hope it will help you.

Regards,

Madan.