Posts

Showing posts with the label Data loader

Salesforce Fact #765 | Assigning leads to territory using data load

Image
We can now assign Leads to territories. The same can be done using data load as well. For this, we need to import records in the ObjectTerritory2Association object and specify the Lead record Id in ObjectId field. Note: If you are using DataLoader and encounter an error 'Invalid Id', please update it to the latest version. Reference:  https://forceforfun.com/2022/10/25/update-dataloader-to-take-advantage-of-assigning-leads-to-territories/ Attached are the screenshots.

Salesforce Fact #647 | Bulk API serial mode

We can enable serial mode processing using Bulk API in data loader. Parallel processing can cause database contention which can cause the load to fail eventually. Serial mode processes one batch at a time, but the processing time might get increased. Steps to enable Bulk API serial mode:  Open Data Loader -> Settings -> Check Bulk API -> Check Enable serial mode for Bulk API. Reference:  https://developer.salesforce.com/docs/atlas.en-us.dataLoader.meta/dataLoader/loader_configuring_bulk_api.htm