2022 Oct 20 9:37 AM
Hi Experts,
There is a need to convert an input value from Decimal to floating point. I request you all to suggest any FM or other way in which we can achieve this.
Best Regards
2022 Oct 20 10:04 AM
DATA decimal_value TYPE p DECIMALS 2 VALUE '1.23'.
DATA floating_point_value TYPE f.
floating_point_value = decimal_value
2022 Oct 20 1:07 PM
2022 Oct 20 4:30 PM