To find Permissions giving Read access on any particular object: SELECT Id, SObjectType, PermissionsRead, Parent.label, Parent.IsOwnedByProfile FROM ObjectPermissions WHERE (PermissionsRead = true) AND (SobjectType = ‘CustomObject__c’) To find Permissions giving Read access on any particular object: SELECT Id, SObjectType, PermissionsRead, Parent.label, Parent.IsOwnedByProfile FROM ObjectPermissions WHERE (PermissionsEdit = true) AND (SobjectType = ‘CustomObject__c’) To find Read permissions… Continue reading