2008 Apr 24 4:22 PM
Hi experts.
I need to multiply a fied with .916.
i deaclared a variable and assigned package decimal value as .916
i m not able to do multiplication.
I m gettg error in the pgm.
please let me know this
sincerely
Jayalakshmy
Hi experts.
I need to multiply a fied with .916.
i deaclared a variable and assigned package decimal value as .916
i m not able to do multiplication.
I m gettg error in the pgm.
please let me know this
sincerely
Jayalakshmy
2008 Apr 24 4:23 PM
2008 Apr 24 4:30 PM
2008 Apr 24 4:34 PM
hi check this..
data: test type f value '.998' ,
test1 type i value 4,
test2 type f .
test2 = test1 * test .
write: test2 .
regards,
venkat
2008 Apr 24 4:33 PM
This works
data:
f1 type p decimals 3 value '.916',
f2 type p decimals 3.
f2 = f1 * 3.
write:/ f2.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |