JAXB error in PM

when i pass the value to the code am getting below error 

if(
  null(ac!convertWord_txt),
  "zero",
  convertnumbertoword(
    trim(split(ac!convertWord_txt, ".").[1]),
    ""
  )
)

what might be the issue here

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to KM

    Your database is NOT converting your value into anything! This seems to be a very common misconception that Appian "converts a number into scientific notation". This is just plainly wrong!

    For any software to display any numeric value on a screen, it needs to turn that numeric value into a string using characters. Typically 0-9.

Children