Data type extension length

1
Hi. I need a data type that allows me to save a number like: 1844674407370955161. Integer, Long and Float doesn't support this length. Do you know how I can achieve this length?
asked
1 answers
4

Using the type Float worked for me. Integer does not accept it and that is correct. It is a bug that Long does not accept this value. You can report it in the support portal.

You could try and workaround it by setting the value of the attribute in an After Create event handler. The microflow expression language does accept this large value.

answered