Formatting Options in SAPscript: Exponent for Floating Numbers

In SAPscript, if you don"t want to specify format an exponent for DATA TYPE FLTP, you can apply this option.

Syntax


&VAR(En)&

Example

&VAR&        =     +1.23456780000000E+06
&VAR(E2)& = +12345.6780000000E+02
&VAR(E7)& = +0.123456780000000E+07
&VAR(E)& = +1234567.80000000

Post new comment