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

Floating Point Type

kesavadas_thekkillath
Active Contributor
0 Likes
773

i have a input value say 213.

i have to match it with a field in table AUSP-ATFLV( type F size 16 decimals 16)

the data in the field is of format 2.1300000000000000E+02

how can i match the value 213 with this value.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
743

Use Conversion Exits .

Awrd Points if useful

Bhupal

Please Specify the name if u r aware....

5 REPLIES 5
Read only

Former Member
0 Likes
744

Use Conversion Exits .

Awrd Points if useful

Bhupal

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
743

Please Specify the name if u r aware....

Read only

0 Likes
743

Hi,

Use FM CONVERSION_EXIT_ALPHA_INPUT.

Regards,

Lalit

Read only

Former Member
0 Likes
743

Try this logic

parameters: a(16).

data: a1 type f.

a1 = a.

if sy-subrc eq 0.

write:/ 'india'.

endif.

If usefull reward points helpfull.....

Read only

0 Likes
743

parameters: a(16).

data: a1 type f.

a1 = a.

output: 4,2424200000000000E+05

If usefull reward points helpfull.....