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

Data Loader to UPSERT Lead records need to auto convert to Account if not already done
I am using the Data Loader to UPSERT Lead records. I need to have the Data Loader convert the Lead to an Account if the Account record does not already exist. I cannot find any information in the documentation about how this is done.
We cannot convert existing lead using this process. Leads must be inserted with these four fields. In update you will not see "ConvertedAccountId and ConvertedContactId".
Please check below post for step by step process
http://salesforceblogger.blogspot.in/2011/08/loading-converted-leads.html
First step is to raise the case with salesforce.com to open up the audit fields for your organisation. The fields CONVERTEDACCOUNTID, CONVERTEDCONTACTID, CONVERTEDOPPORTUNITYID and CONVERTEDDATE will not be visible while inserting or updating by default.
Once the salesforce allows you to load these system fields you can start your process.
Steps for Loading
Things to consider while loading
How can I update Lead fields on converted Leads
https://help.salesforce.com/apex/HTViewSolution?id=000170793&language=en_US
Or you can write trigger in lead like below post
http://salesforce.stackexchange.com/questions/38/mass-lead-conversion-programmatically-or-using-data-loader
Let us know if this will help you
Thanks
Amit Chaudhary
All Answers
Its not possible in Dataloader.Dataloader is an API Tool which is used only for load & Export the Datas from Salesforce.
If you want Convert the Lead to an Account Automatically when a record is inserted through the Dataloder You need a APEX TRIGGER.
Let me know if you want any further help...
Thanks,
Raj.
(Sweet Potato Tec)
We cannot convert existing lead using this process. Leads must be inserted with these four fields. In update you will not see "ConvertedAccountId and ConvertedContactId".
Please check below post for step by step process
http://salesforceblogger.blogspot.in/2011/08/loading-converted-leads.html
First step is to raise the case with salesforce.com to open up the audit fields for your organisation. The fields CONVERTEDACCOUNTID, CONVERTEDCONTACTID, CONVERTEDOPPORTUNITYID and CONVERTEDDATE will not be visible while inserting or updating by default.
Once the salesforce allows you to load these system fields you can start your process.
Steps for Loading
Things to consider while loading
How can I update Lead fields on converted Leads
https://help.salesforce.com/apex/HTViewSolution?id=000170793&language=en_US
Or you can write trigger in lead like below post
http://salesforce.stackexchange.com/questions/38/mass-lead-conversion-programmatically-or-using-data-loader
Let us know if this will help you
Thanks
Amit Chaudhary