Skip to main content
Sudesh S a posé une question dans #Security
How to restrict Create New record access in Account object based on Profile?

 

Ex : user from profile1 only allowed to create New Account for country US. 

 

user from profile2 only allowed to create New Account for country Canada.

 

Can this be done by Validation Rule?

 

 
10 réponses
  1. 13 juil. 2018, 18:03
    Like this:

     

    OR( AND(  ISNEW(),

     

                      TEXT(Country)<>'US',

     

                      $Profile.Name='Profile 1' 

     

                     ),

     

    AND( ISNEW(),

     

             TEXT(Country)<>'Canada',

     

              $Profile.Name='Profile 2' 

     

             )

     

    )
0/9000