‎2007 Dec 27 8:24 AM
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.
‎2007 Dec 27 8:26 AM
‎2007 Dec 27 8:26 AM
‎2007 Dec 27 8:34 AM
‎2007 Dec 27 8:36 AM
‎2007 Dec 27 8:35 AM
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.....
‎2007 Dec 27 8:38 AM
parameters: a(16).
data: a1 type f.
a1 = a.
output: 4,2424200000000000E+05
If usefull reward points helpfull.....