Query to find what access the field has in the Permission Set
Select SobjectType, Field,parent.name From FieldPermissions where Field='Account.aField__c' and PermissionsEdit = true
If place of Account, provide the object name like if its custom object - Candidate , it should be Candidate__c
aField__c is custom field on the Account Object. Replace this field with another as per your requirement. Put the field for which you want to check the access in the permission sets.
Use PermissionsEdit or PermissionsRead - based on need like you are checking read access or edit access for the mentioned field of the mentioned object.
Visual : https://www.youtube.com/watch?v=wx3s-s19SjI
Comments
Post a Comment