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
Gaurav AgnihotriGaurav Agnihotri 

How to give a user a delete access to an object without creating a new profile?

Hi All, 
I have a requirement where a user is asking for a delete access to a standard object. Now, I really don't want to create a new profile for the user. Can this issue be resolved using a permission set?

Thanks in Advance,
 
Best Answer chosen by Gaurav Agnihotri
Amit Chaudhary 8Amit Chaudhary 8
You can create the permission set and assign the same to user.

A permission set is a collection of settings and permissions that give users access to various tools and functions. The settings and permissions in permission sets are also found in profiles, but permission sets extend users’ functional access without changing their profiles.

Please check below post for same
1) https://help.salesforce.com/articleView?id=perm_sets_overview.htm&type=0
2) https://developer.salesforce.com/docs/atlas.en-us.securityImplGuide.meta/securityImplGuide/perm_sets_overview.htm
3) http://www.salesforcetutorial.com/working-profiles-salesforce/

Let us know if this will help you
 

All Answers

Amit Chaudhary 8Amit Chaudhary 8
You can create the permission set and assign the same to user.

A permission set is a collection of settings and permissions that give users access to various tools and functions. The settings and permissions in permission sets are also found in profiles, but permission sets extend users’ functional access without changing their profiles.

Please check below post for same
1) https://help.salesforce.com/articleView?id=perm_sets_overview.htm&type=0
2) https://developer.salesforce.com/docs/atlas.en-us.securityImplGuide.meta/securityImplGuide/perm_sets_overview.htm
3) http://www.salesforcetutorial.com/working-profiles-salesforce/

Let us know if this will help you
 
This was selected as the best answer
Abhinav Dev01Abhinav Dev01
Hi Gaurav,

Yes, permission set will resolve your requiremnt. You can create a permission set to give delete access to a standard object and assign to any specific user/group.

As you know, permission set is a collection of permissions and settings which extends user's functional access without changing their profile.

Below is the article which helps you to Create, edit, delete and assign a permission set:

https://help.salesforce.com/articleView?id=000206679&type=1

Regards,
Abhinav
Gaurav AgnihotriGaurav Agnihotri
Thank you Amit and Abhinav. Appreciate your response.