
e.g. To stop all users from moving ownership of an Opportunitiy into user 'Bob' (User ID = 123456)
1 respuesta
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.