Looked at a ton of other similar posts and tried a number of things. None working for us.
Business requirement is for all employees to verify their personal contact information 2x/year.
We have added a boolean user field 'blnValidated' and added it to the EmployeeContact.EmployeeContactUpdateForm. We're trying to put a constraint on it so that it must be checked for the form to submit. Our attempts are not successful, even though we seem to be doing things very similarly to other community posts.
YNHHValidated
Constraint when (not blnValidated)
"Check_the_box"
(first post, so indenting above not rendering properly)
Other things we've tried:
Constraint when (true)
Constraint when (false)
Constraint when (blnValidated)
Constraint when (blnValidated = true)
Constraint when (blnValidated = false)
Constraint when (blnValidated entered)
Constraint when (blnValidated not entered)
Also tried some Parameter Rules and Action Rules. Nothing seems to be sticking. This should be simple...what are we missing???