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
r nareshr naresh 

How to manage profile

>..i am trying to do this
There are 1000 Users using one Profile (XXX)
In that for 10 Users need to Remove update Access for 5 Different Objects
How to do.?
1st user can access all Objects except (A Object should have only Read Permission), 2nd User can Access all Object except (B Object should have only Read Permission), 3rd User can Access all Object except(C Object should have only Read Permission)……..10th user can Access all Object except (X Object should have only Read permission).
Best Answer chosen by r naresh
Himanshu ParasharHimanshu Parashar
Hi Naresh,

We can use permission set to achieve this (Permission set can be used to grant additional access not to deny access). Please follow below steps :

1. Clone your current profile and revoke CRUD permission from 5 different objects.
2. Assign this new profile to your 10 Users.
3. Create different Permission set with different access rights. for example your first permission set will contain only Read permission on Object A.
4. Assign corresponding permission set to specific user.

if you are new to Salesforce you can read about permission set here 
 
https://help.salesforce.com/apex/HTViewHelpDoc?id=perm_sets_overview.htm



Thanks,
Himanshu
Salesforce Certified Developer | Administrator | Service Cloud Consultant

P.S. If my answer helps you to solve your problem please mark it as best answer. It will help other to find best answer.