Skip to main content

How to update Field Level Security in bulk ?

Assign Field Level Security(FLS) in Salesforce



Demo:-


In this blog we will see the easy way to update Field Level Security(FLS) for Permission sets/Profiles in bulk.
I have created a tool to make the Admins job a little easier. Before jumping to tool let us see the different standard approach we follow to update FLS in Salesforce.                

As an admin we usually update FLS from salesforce setup/UI. If we are working on a new Application with many Permission sets and Objects with 100+ fields it can be very time consuming task. Using this tool we can assign FLS in just few mins.

Let us take an example. Suppose we have a new application and we have created 20 Permission sets and 8 Profiles. Now there are 10 Objects in all and in each object we have 15 fields for which we need to update FLS for above Permission sets and Profiles.
Let us first see the different approach to assign FLS in Salesforce. We have two ways in which we can update FLS for a particular field. 

1.To update FLS for Profiles from Setup we can go to Object Manager choose Fields & Relationships and then we select the particular field to set Field-Level Security. 

Setup -> Object Manager -> Fields & Relationships -> Select Field ->click set Field-Level Security

FLS for Industry field of Account Object

2
. To Update FLS for Permission sets/Profile we go to Permission set/Profile from setup select the Permission set and from Object Settings we go to each Object and then update the FLS. This is time consuming with 20 Permission sets, 8 Profiles and 10 objects.



Another approach that we can follow is by updating FLS via inserting data to FieldPermissions object.

To update the field permissions we need to prepare data with four columns that the 'FieldPermissions'  object needs.
1. SobjectType - It stores the Object API name.
2. Field - It contains the Field API name.
3. PermissionsRead - It depicts whether the permission set or profile has Read access for the Field.
4. PermissionsEdit - It depicts whether the permission set or profile has Read/Write (Edit) access for the Field.

For example I have taken 3 Standard Object Account, Contact and Opportunity and 1 Custom Object Candidate with mix of custom and standard fields.

Here we will see step by step approach to prepare data and upload data using the Tool to update FLS.

Step 1: Get the list of Objects API name and Fields API name for which we need to give FLS. 


Step 2: Concatenate the column SobjectType and Field with ".


Step 3: Delete the second column and add two columns with the Permission needed. (PermissionsRead and PermissionsEdit) . 
Please check the headers it should be exactly same as in the below SS. These are the field API names of the FieldPermissions Object. 

There can be chances that we are updating the Permission to Read Only from Edit so you can give FALSE in PermissionsEdit column and TRUE in PermissionsRead column.


Step 4 :  Save the file in CSV format only.

Step 5: Go to 'FLS File Upload Tool' .


Step 6: Select the all Permission sets and Profiles for which you need to provide FLS. 
I have created some custom permission sets and custom profiles for example.


Step 7: Upload the file prepared in Step 3.

Step 8:  Click Done.

Step 9 : Click Yes.

And finally we are done :)

Demo :
   


Copy the code and paste it in your org. Go to Home page or Record Page and add the 'FLS File Upload Tool' component in your page.

Source code :- Git Hub

Thank you all !
#Keep learning #Keep Sharing :)


Recent blogs:
How to use hyperlink in custom Toast Notification message in LWC
Nested Accordion in LWC
Build custom add to favorites functionality using LWC




Comments

  1. Awesome. I have one small suggestion that you can give 2 more lookups. One for search objects and another for generating CSV. Suppose If I select the account then CSV should have all the fields and the fields you asking for update FLS.
    Great work !!!

    ReplyDelete

Post a Comment

Popular posts from this blog

How to create custom polymorphic field using LWC ?

How to create custom polymorphic field using LWC ? In this blog we will see how we can make polymorphic lookup field using LWC. What is Polymorphic field? A polymorphic field is one where related object might be one of the several different types of objects. There can be a use case where a customer wants to connect one object with multiple objects- i.e, relationships between objects or relate a child object to multiple parents's ojects. For example, in task Object we have three such polymorphic fields. The WhoId(Name) relationship of Task can be with Contact or a Lead. Assigned To field can be a User or a Queue. Similarly, a WhatId(Related To) relationship field of Task can be with many other objects like Accounts, Opportunities etc. In Salesforce, currently we do not have any OOTB option or may be we can say we do not have a datatype for polymorphic field which we can create but if required we can create a custom component to facilitate the same functionality. So let's get

How to use Hyperlink in Custom Toast Notification message using LWC

  Use Hyperlink in Custom Toast Notification message using LWC   We all know that a component can send a toast notification that pops up to alert users of a success, error, or warning. A toast can also simply provide information to the user. But what if we need a hyperlink on the message to navigate to the records on the message body. Yes, we can put Links as well on the message body as we can see in Standard Notification Toasts. This is very simple just we need to remember few things. We should know how to use Navigation Services by using NavigationMixin.GenerateUrl method. Let us see the functionality in this blog. To display a toast notification in Lightning Experience or Experience Builder sites we import ShowToastEvent from the lightning/platformShowToastEvent module. We use this ShowToastEvent to provide feedback to a user following an action, such as after a record is created. Now in this blog we will see how to add hyperlink in the message of the Show Toast event and navig