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
AndrewXAndrewX 

How to access 'View All' and 'Modify All' setting for a Custom Object

Hi All,

How do I access the setting (checked or unchecked) for 'View All' And 'Modify All' for a particular Custom Object?

 

On the Edit Profile page, there is a section where I set the permissions that profile has on a Custom Object. Besides, 'Read', 'Create', 'Edit' and 'Delete', there is a checkbox for 'View All' and 'Modify All'.

 

I am able to read the values for 'Read', 'Edit', 'Create' and 'Delete' in Apex with a call like this:

 

Schema.DescribeSObjectResult objectDescription = CustomObj__c.sObjectType.getDescribe();
objectDescription.isCreateable();

 

but I couldn't find a way read the values for 'View All' and 'Modify All'. Is there a method on DescribeSObjectResult that I am not seeing?

 

Thanks for any help.

 Andrew