Skip to main content
Marisa Grimes 님이 #Data Management에 질문했습니다
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개
  1. 2016년 6월 10일 오후 5: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