You need to sign in to do that
Don't have an account?

Restrict lead conversion
Hello everyone,
I'ld like to restrict the lead conversion when the user is not the lead owner. What's the easiest way?
Thanks in advance
Javier Jiménez
Abante Asesores
Hi,
You can a validation rule on the lead to restrict the user for conversion of lead.
Try the below validation rule criteria as reference:
AND(OwnerId != $User.Id , IsConverted )
Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.
you are having two options to restrict this
you can override standard Convert button by VF page
below is VF page code
Apex Code
Please overide standard convert button by below page
Approach 2:
Create anather custom button for Lead Conversion with content source as execute javascript
Code is here
Please let us know if you face any issue with above code
Thanks