You need to sign in to do that
Don't have an account?
How to fire before triggers on Lead Conversion
I'm facing a weird issue. I am converting leads in after insert Lead Trigger, but I'm not able to fire Before Triggers on Contact that is being created on Lead conversion.
Yes I've checked the "Require Validation for Converted Leads" checkbox, but still the before triggers are not firing.

Yes I've checked the "Require Validation for Converted Leads" checkbox, but still the before triggers are not firing.
I actually need to assign contacts that are being converted on lead conversion to a particular user.
I'm doing this in Before Contact triggers.
If I try to do this in After trigger of Contact, the update operation fires the Contact trigger again in recursion, although I've stopped the recursion but my entire logic gets messed up.
1) http://salesforce.stackexchange.com/questions/3956/lead-conversion-trigger-order-of-execution
Before Trigger should be execute after updating lead setting.
But Still you can try After Trigger to resolve your issue. To fix the recursive trigger issue . Please check below post. i hope that will help you
http://amitsalesforce.blogspot.in/2015/03/how-to-stop-recursive-trigger-in.html
Yes I've seen that discussion. The problem is I can't use after update trigger to assign contact to a particular user as the logic is different when a contact is created and updated.
If I update a the contact after it is created on lead convert, the update logic would fire and I don't want to do that :(