What is the preferred method to validate (restrict) user input?
Say you have an "ounces" field that should only accept values from 1-16. How would you enforce that data entry?
Thanks.
Looking around I see in the number field you can set a Min and Max value.
Fred Thanks Fred, I finally found that too, but what about field validation in general? Is that not something that's currently implement-able?
You can add code to a trigger after update at the field level that looks for whatever you want.
Fred You're right. Thank you!