2008 May 29 12:13 AM
Hi!
I HAVE a NUMBER 0000.699 and I need it on 6.9900000E-01 format!
HOW I CAN DO THAT????
Please its urgent!!
Tks in advance
2008 May 29 12:35 AM
2008 May 29 12:23 AM
Hi,
Check this FM "CTCV_CONVERT_DATE_TO_FLOAT" . It can convert any 30 digits of number to float.
You can even copy the source code of this Function Module and extend it beyond 30 numbers.
Reward points if useful.
Regards
Abhishek
2008 May 29 12:35 AM
2008 May 29 1:02 AM
Hi,
Check this code.
Data : v_float type f,
v_dec type p decimals 3 value '0000.699' .
v_float = v_dec.
write : v_float, v_dec.
Regards
Abhishek.
2008 May 29 1:35 AM