Skip to main content
I would like to prevent users from moving Opportunity Ownership into one particular user.

 

e.g. To stop all users from moving ownership of an Opportunitiy into user 'Bob' (User ID = 123456)
1 respuesta
  1. 31 ene 2019, 11:53
    Hi Serena,

     

    You should be able to utilise a validation rule for this. Let's try this:

    AND (

    ISCHANGED(OwnerId),

    Owner.username = 'bob@bobinc.com'

    )

    I'd prefer using the username to the ID, as it's more readable.

     

     
0/9000