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

Function module

Former Member
0 Likes
378

How to convert 1.1185300000000001E+04 to

111853.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
348

Hi,

Try function module CONVERSION_EXIT_FLTPC_OUTPUT

Hope it will solve your query.

Thanks,

Kamesh Bathla

3 REPLIES 3
Read only

Former Member
0 Likes
348

Check these FMs -

KKEK_CONVERT_FLOAT_TO_CURR

CHAR_FLTP_CONVERSION

and this routine..


data: a type string value '10E+02'.

data: b type f.
data: c type p.

b = a.

c = b.
write:/ b, c.

Read only

Former Member
0 Likes
349

Hi,

Try function module CONVERSION_EXIT_FLTPC_OUTPUT

Hope it will solve your query.

Thanks,

Kamesh Bathla

Read only

Former Member
0 Likes
348

Hi,

I would like to ask what is different between function module to function group?

Thanks in advance