number format

Hi All,
we have a big number like 20000000
When we try to map it we discover that Appian changes this number as 2e+07
If we use the funcion fixed() we heve the number with comma separator ... 20,000,000
We need to have the number as is, without comma

How can we do that?

OriginalPostID-260664

  Discussion posts and replies are publicly visible

Parents Reply Children
  • 0
    Certified Lead Developer
    in reply to fathimaz

    Appian stores numbers in Double floating point type and Integer type under the hood.  Double is the more precise one and gives you approximately 16 digits of precision.  You can't get more without using an arbitrary precision mathematics library in a custom plugin or using Java BigDecimal in a plugin.

    At least, not unless Appian decides to add another datatype to their product.