2007 Sep 12 9:24 AM
Hi in my report i have two fields value_old and value_new. They are displaying value in the exponential format e.g. 1.000000E+02. But i want it to be printed as 100. Kindly help me on that
Hi in my report i have two fields value_old and value_new. They are displaying value in the exponential format e.g. 1.000000E+02. But i want it to be printed as 100. Kindly help me on that
2007 Sep 12 9:27 AM
2007 Sep 12 9:30 AM
thanks for ur quick reply. Could u ppls be a bit elaborate.
Thanks,
2007 Sep 12 9:29 AM
DATA : VAR TYPE P DECIMALS 2.
VAR = <PASS YOUR EXPONENT VALUE VARIABLE>.
WRITE : / VAR.
REGARDS
SHIBA DUTTA
2007 Sep 12 9:29 AM
Hii..
data : v_fvar type f value '123.45'.
Write:/ v_fvar exponent 0.
REWARD IF HELPFUL.
2007 Sep 12 9:29 AM
Hi Nandi,
check this,
check this flow it may help.
data: a type string value '1.000000E+02'.
data: b type f.
data: c type p.
b = a.
c = b.
write:/ b, c.
Thanks,
Reward If Helpful.
2007 Sep 12 9:31 AM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |