You need to sign in to do that
Don't have an account?

What is the behavior of validation rule?
does the field validation rule still fire even the field is not in page layout?
ex.
validation rule: len(field) = 0
message: field cannot be empty
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
does the field validation rule still fire even the field is not in page layout?
ex.
validation rule: len(field) = 0
message: field cannot be empty
Yep. It does.
how can i bypass this. i dont want the validation rule fire when the field is not in the page layout
Can you post your validation rule as it is now?
AND(
OR
(
ISNEW() ,
ISCHANGED(MailingCountry )
),
LEN( MailingCountry ) = 0,
$Profile.Name <> "System Administrator"
)
This existing post should help:
http://boards.developerforce.com/t5/Formulas-Validation-Rules/Multi-Page-Layouts-and-Validation-Rules/m-p/171240#M7206