‎2008 Jan 23 1:18 PM
Hi Friends,
Greating of the day, there is a no. which is in mantissa and exponent format (like 2.547896 E+4) have to convert it into normal format(like 25478.96), could any of you tell me that there is any key word in ABAP to do it. or any other way to do it .
Looking forward to your response.
Thanks & Regards,
Gulrez Alam
‎2008 Jan 23 1:22 PM
Check this,
data:
SOLLWERT type QPMK-SOLLWERT,
temp(16) type p decimals 2.
SOLLWERT = '1.0199999999999999E+01'.
move SOLLWERT to temp.
write: SOLLWERT,temp.
‎2008 Jan 23 1:22 PM
Check this,
data:
SOLLWERT type QPMK-SOLLWERT,
temp(16) type p decimals 2.
SOLLWERT = '1.0199999999999999E+01'.
move SOLLWERT to temp.
write: SOLLWERT,temp.
‎2008 Jan 23 2:41 PM