Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP-programming

Former Member
0 Likes
497

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
466

Check this,

data:

SOLLWERT type QPMK-SOLLWERT,

temp(16) type p decimals 2.

SOLLWERT = '1.0199999999999999E+01'.

move SOLLWERT to temp.

write: SOLLWERT,temp.

2 REPLIES 2
Read only

Former Member
0 Likes
467

Check this,

data:

SOLLWERT type QPMK-SOLLWERT,

temp(16) type p decimals 2.

SOLLWERT = '1.0199999999999999E+01'.

move SOLLWERT to temp.

write: SOLLWERT,temp.

Read only

0 Likes
466

Thanks, a lot.