‎2008 Jun 03 10:31 PM
Hi,
Is there a Function Module available for converting a number in the format:
example: 1.200000000000000E+03
to an hour?
If not, then do I have to convert it myself (the +03 at the stand stands for the number of place to move the decimal to the right, making the converted number 1200.00 hours)?
Please Help.
Thanks.
‎2008 Jun 03 10:44 PM
Just move it to another numeric type, like p
data: hour type f value '1200',
hour_p type p,
hour_i type i,
hour_n(5) type n.
hour_n = hour_p = hour_i = hour.
‎2008 Jun 03 10:44 PM
Just move it to another numeric type, like p
data: hour type f value '1200',
hour_p type p,
hour_i type i,
hour_n(5) type n.
hour_n = hour_p = hour_i = hour.