Sergej If I use rule Client.PasswordClear=RANDOM()*1000000000000 them I get error when try to create Client BO java.lang.NumberFormatException For input string: "1000000000000" I use it in order to delete come from password.
tford I assume your passwordclear attribute is a text attribute. How will a numeric numeric function clear a comma ???
Sergej Why not? Yes it is type of plain text. But why cant attribute type of plain text contain numbers. So I expect RANDOM()*1000000000000 will return number. It works when there are less zeros. 🙂
Sergej I tested it in attr type of number also. same error. I think problem in that multiplying number. Its too large.
nlarson that's multiplying by a trillion, I think if you don't format with a decimal Aware only goes up to 9 digits. Might not be the issue here, but should be easy to test by using a much smaller number to find out.