ganesh_kapase
23rd February 2006, 11:49
I have a custz print session where in I had defined and used variable tot.amt with domain as td.inda.
I can able to print the report but report gives error message as below :

Process 81-Warning : Overflow: format='99999999999V99' value='-212.01'
Here value -212.01 is calculated through script.

Please let me know how to remove this error.

Thanks & Regards,

bilmaa
23rd February 2006, 12:07
Process 81-Warning : Overflow: format='99999999999V99' value='-212.01'
Here value -212.01 is calculated through script.

with this format the number will be 0000000021201, and the sign's place?

you can use the format '-9999999999V99' or 'ZZZZZZZZZZ9V99' whith this i think your problem is solved.

bdittmar
23rd February 2006, 14:05
I have a custz print session where in I had defined and used variable tot.amt with domain as td.inda.
I can able to print the report but report gives error message as below :

Process 81-Warning : Overflow: format='99999999999V99' value='-212.01'
Here value -212.01 is calculated through script.

Please let me know how to remove this error.

Thanks & Regards,

Hello,
it's only a warning.
Or use a Format like this :

| Maintain Formats by Generic Unit |
|------------------------------------------------------------------------------|
| |
| Format Code : 001 Rates Industry and Project |
| Maximum Number of Positions : 10 Thousand Sign : Nein |
| Number of Significant Digits : 7 Symbol : Ja |
| Minus sign : Before the figure|
| |
| Generic Unit Format |
| |
| R$ Real ZZZZ9VD99 |
| AUD Australian Dollars ZZZZ9VD99 |
| BEF Belg. Frank ZZZZZZ9 |
| CAD Canadian Dollars ZZZZ9VD99 |
| CHF Swiss Francs ZZZZ9VD99 |
| DEM Deutsch Marken ZZZZ9VD99 |
| DKK Denish Kroners ZZZZ9VD99 |
| ESB Spanish Pesetas ZZZZZZ9 |

Regards

en@frrom
24th February 2006, 17:08
Indeed, a warning only, however, the desired value will not be displayed/printed. The format you are using on the report field, allows positive values only. Since the printed value is negative, the overflow message appears, and instead of the value, the overflow signs will appear..