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
MrTheTylerMrTheTyler 

Edit Multiple Profile Permissions at Once

Is there a way for me to modify CRUD settings on a custom object for all profiles simultaneously?  

 

Thanks!

 

Tyler

Best Answer chosen by Admin (Salesforce Developers) 
BrendanOCBrendanOC

CRUD permissions are set on the Profile, not the individual objects.  I do not know of a way to edit CRUD across multiple profiles in the UI.

 

You can update Profiles through the Metadata API though.  If you need to perform large-scale changes to CRUD, you can write custom code and integrate it through the Metadata API.

 

All Answers

BrendanOCBrendanOC

CRUD permissions are set on the Profile, not the individual objects.  I do not know of a way to edit CRUD across multiple profiles in the UI.

 

You can update Profiles through the Metadata API though.  If you need to perform large-scale changes to CRUD, you can write custom code and integrate it through the Metadata API.

 

This was selected as the best answer
MrTheTylerMrTheTyler

Nice to know about the MetaData API exposing profile settings.