‎2008 May 28 9:29 AM
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
‎2008 May 28 9:31 AM
‎2008 May 28 9:31 AM
‎2008 May 28 9:31 AM
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
‎2008 May 28 9:34 AM
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.
‎2008 May 28 9:32 AM
Try to increase the length of the variable for which UR getting DUMP ..
use ...
data : v_data type WERT12.
‎2008 May 28 9:32 AM
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
‎2008 May 28 9:37 AM
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.