Skip to main content
Sudesh S ha preguntado en #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 respuestas
  1. 13 jul 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