function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Nuevo9763Nuevo9763 

Auto populate opportunity field on Lead conversion

I need to auto-populate an Opportunity field on lead conversion. What's the best approach, writing a trigger to do this or create workflow rule?
I am new to SalesForce, so pardon me if this is a dumb question.
Thanks,
Best Answer chosen by Nuevo9763
Rahul_kumar123Rahul_kumar123
Hi MK7,
Triggers:
 Triggers can work across objects and wherein you can query the object as well as you can do DMLs.
 And  Used for a complex business process in which multiple Obj can handle.

Workflows:
But workflows will only helpful to update the same object or master object in custom master-detail relationships.
There are several scenarios in which you can't achieve your functionality with workflows.

To Auto Populate on lead Conversion Please check the below Link which was posted in developer forums Earlier.

http://developer.salesforce.com/forums/?id=906F00000008of6IAA 

Please mark it as solved if it is resolved.

Best Regards
RahulKumar

All Answers

Harsh Aditya 8Harsh Aditya 8
Hi Mk7,

If the lead field is custom field, and opportunity field is also a custom field,
then you can map the field using Lead Custom Field Mapping.

Lead -> fields -> click on Map Lead Fields button.

If the requirement is complex then you can go for the workflow rules,
but the best approch will be using Lead Custom Field Mapping.

Thanks,

Harsh Aditya8.
Rahul_kumar123Rahul_kumar123
Hi MK7,
Triggers:
 Triggers can work across objects and wherein you can query the object as well as you can do DMLs.
 And  Used for a complex business process in which multiple Obj can handle.

Workflows:
But workflows will only helpful to update the same object or master object in custom master-detail relationships.
There are several scenarios in which you can't achieve your functionality with workflows.

To Auto Populate on lead Conversion Please check the below Link which was posted in developer forums Earlier.

http://developer.salesforce.com/forums/?id=906F00000008of6IAA 

Please mark it as solved if it is resolved.

Best Regards
RahulKumar
This was selected as the best answer