‎2007 Jan 19 1:25 PM
Hello all,
I need to convert numbers from this format 5,555000000000000E+03 to this one: 5.555 (in CRM).
Does anybody know what function I could use?
Thanks in advance.
Carmen
‎2007 Jan 19 1:27 PM
‎2007 Jan 19 1:30 PM
REPORT zforum12 .
data : v1 type f.
data :v2 type p decimals 3.
v1 = v2 = '5.555'.
write:/ v1.
write:/ v2.regards,
vijay