Brian Dunning's Error Code Reference

FileMaker Error 502

Number value does not meet validation entry options

 

Comments

E.J. Sexton   E.J. Sexton, Sexton Consulting LLC
Jan 2, 2012
I ran into this problem when I was attempting to set the value of an ESS "INT" field in a FileMaker Script:

Set Field( EssTable::IntField; FmTable::IntField )

As far as I could tell, FmTable::IntField contained a valid number, but was still reporting the error. To fix the problem, I modified the "Set Field" statement:

Set Field( EssTable::IntField; 0 + FmTable::IntField )