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
Praveen Kumar JhaPraveen Kumar Jha 

Delete/Update mass records for custom object without using data loader


How can i delete/update  mass records for custom object  without using data loader. Right now i am only see these option for standard object.  
ShashForceShashForce
Hi,

I'm afraid you cannot Update/Delete custom object records using the inbuilt Import Wizard. Other than the Data loader, you can also use Workbench for this: https://developer.salesforce.com/page/Workbench

You may also go for appexchange solutions:
https://appexchange.salesforce.com/listingDetail?listingId=a0N300000016cvQEAQ
https://appexchange.salesforce.com/listingDetail?listingId=a0N30000003J6KcEAK
https://appexchange.salesforce.com/listingDetail?listingId=a0N300000016YuDEAU

Programatically, you can use Batch Apex: https://www.salesforce.com/us/developer/docs/apexcode/Content/apex_batch.htm

If this answers your question, please mark this as the Best Answer for this post, so that others can benefit from this post.

Thanks,
Shashank
Tony TannousTony Tannous
Hello ,

you can update or delete using the developper console and by writting apex code ex:

List<Account> listAcctoDelete= [select id,name
                                                           from account
                                                             limit 200];

delete listAcctoDelete;

you can do the same for update.
 
Abi DuthuAbi Duthu
Hi,

The Import wizard lets you import data for a custom objects.

You can also use Jitterbit to Delete/Update records, refer this link :
http://www.jitterbit.com/Docs/WebHelp/Wizards/Salesforce_Bulk_Process_Wizard.htm