Solved
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
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
Is convertWord_txt a number? If so, try this
if(
null(ac!convertWord_txt),
"zero",
convertnumbertoword(
fixed(ac!convertWord_txt, 0,false),
""
)
)
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.