‎2008 Jun 25 2:48 PM
Hi
Please help me out
I have data
Input = 2.00+e4 ( Exponential Form)
i want out put = 20:00:00 ( time format)
how to do this? any function module ???
regards
aryan
‎2008 Jun 25 2:53 PM
Hello,
If you know exactly how it'll always come in - why not use string manipulation?
Kind regards
Ash Thomas
Sap Consultants
‎2008 Jun 25 2:58 PM
‎2008 Jun 25 3:07 PM
hi
if i give
input 4.00+e4
what will be desired output
can explain it more
with Example
Cheers
Snehi
‎2008 Jun 25 3:24 PM
Hi
I just want to know that
If you check CAWN table ther time format is storing as Float ...and i have to fetch the same field in TIME format
I don't know how....
STRING manupulation i can't do in 2000+e4 format...
any solution...
‎2008 Jun 25 3:11 PM
‎2008 Jun 25 3:27 PM
Hi,
When we assign a floating point number to a field of type T
then the floating point number is converted into Packed number (As no. of Seconds) and then the Packed number is converted to time format(HH:MM:SS).
data:
w_float type f,
w_time like sy-uzeit.
w_float = '2.00+e4' .
w_time = w_float.
write w_time.
output :
00:00:02.
I think this will help you