HiI have got a problem with a numeric field in a form.
In France we use the , character for decimals.
Everything is Ok when users enter this character in a Numeric Field. But some of them sometimes use the . character and I get an error with documents which are show in my view
ERROR : Unrecognized characters found after number
I tried to add this in Input Validation to replace any . by a ,
FIELD Montant:=@Replace(Montant; “.”; “,”) ;
@All
No error in my code, but this does seems to do anything and error is still there when I save a document
Any idea?