How to Remove Change Owner from a Lead from certain profiles in Salesforce?
Hi,
There are a couple of ways you can do this.
1. Create a Validation rule which will throw an error if the user of that profile tries to change the ownership of the record.
$Profile.Name = "Your Profile Name" && ISCHANGED( OwnerId )
2. Remove "Owner" field from the Page Layout of the objects exposed to their profiles.
OR
1) Makes owner field read-only (Name | Setup | App setup | Customize/ Create | Go to Page Layout | make Record owner field read Only)
2) Modify all/ Modiffy all data ( Name |Setup | manage Users | Profile | Under Administrative perission & Object permission).
3) "Transfer Record" Permission under administrative permission ( Name |Setup | manage Users | Profile | Under Administrative perission)
4) Transfer Cases, Transfer Lead Permission under ( Name |Setup | manage Users | Profile | Under Genera USer Permission)
Thanks.
Keep Reading.