OWD - Is set to private. on the Contact and Account object?
Profiles - View All & Modify All is not checked and CRED is checked for everything.
Any ideas how to prevent Smith from editing Wilson's contact? Validation Rule???
답변 5개
If you want to not let the user save the record when checkbox is TRUE , then use this:
AND(
Checkbox__c = TRUE,
$Profile.Name <> "Allowed Profile1",
$Profile.Name <> "Allowed Profile1",
$Profile.Name <> "Allowed Profile1"
)
If it's the opposite, then use this:
AND(
Checkbox__c = FALSE,
$Profile.Name <> "Allowed Profile1",
$Profile.Name <> "Allowed Profile1",
$Profile.Name <> "Allowed Profile1"
)