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
David Bigand 3David Bigand 3 

duplicate object with content

Dear All,

In our organisation Leads have wrongly been use. I need to duplicate the Lead object and all the leads inside to a custom object.

Then clean and restructure Lead object.

How can I duplicate, copy lead object and it's content ?

Best regards.

David

Lokesh KumarLokesh Kumar
Hi David,

Hope you have all the required fields required for the Lead record stored in the custom object.

You can do it manually means through data loader insert event having.CSV file ready from the custom object.

let me know if this helps you.

Thanks !
Ravi Dutt SharmaRavi Dutt Sharma
To duplicate an object, you may use eclipse. Copy the Lead.object file in your local workspace and change the API name and other required parameters in the object file. Then right click on object file and Deploy to server. For copying the data, use data loader. Export all the lead records from Lead object and insert in the newly created Lead object. Thanks.