2023 Jul 28 9:18 AM
Hi all
I have a floating point value 1.4147483939E10
5.468494899E09
I want this number as 141.474 54.684
How can this be achieved ?
Note:- I have already tried moving the value to a p type variable of p decimals 3 and it's not serving the purpose
It's a include within a standard program and the fixed point arithmetic is not checked
2023 Jul 28 9:33 AM
Us like this
IF var CP '*E+*'.
* --> Move to Float
DATA(lv_float) = CONV imrc_recdv( var ).
here imrc_recdv is a floating type
2023 Jul 28 10:27 AM
You didn't understand the solution that Matthew gave you in your previous question.
You'd better continue a discussion, and ask question or confirmation if you don't understand.