Have you tried 'EXPONENT' keyword.
Pass your field's content into a variable of type F, then again write this value to another variable using EXPONENT 0.
Check out below code:
DATA: L_VAR TYPE STRING VALUE '1.60E+11',
L_VAR2 TYPE F,
L_VAR3(16) TYPE C.
L_VAR2 = L_VAR.
WRITE: L_VAR2 TO L_VAR3 EXPONENT 0.
WRITE: L_VAR3.







.jpg)



