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
BobsmithBobsmith 

Mass update of User records with Salesforce CRM Content

I want to update the Salesforce CRM Content for 1000 users belonging to different profiles. I've created a list view for this, but not able to mass update the records. How to get this done? Is there a query connecting user and profiles using which i can do this via data loader?

IspitaIspita

Yes it can be done via dataloader .

 

  • You need to export using asppropriate query the subset of data you want to update as csv.
  • Then make changes in these csv files data as per your requirement.
  • Upload the changes thus made via data loader to propagate the changes to the salesforce org.

Hope this helps.