Skip to main content
How do I prevent Smith from editing Wilson's contact.

 

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 respuestas
  1. 10 jun 2016, 17:29
    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"

    )

0/9000