Salesforce Standard Objects Feature Parity
Tom Bassett
Salesforce Forum Ambassador | #BeMore Podcast Host Salesforce Ben Expert Author | 3 x Dreamforce Speaker London Architect Group Co Leader | Solutions Architect ?????
Within Salesforce certain Standard Objects support specific features or functions.
As I brush up on my SOQL Skills I'd thought I'd share this list of highlights with you so you know what objects support which features.
This is particularly helpful if you need to know if a Standard Object supports a Record Triggered Flow or Apex Trigger.
View this Information as a Google Drive PDF
If you'd like to pull this list for yourself then using a tool such as Salesforce Inspector Reloaded you can run the following query;
select DetailUrl, DeveloperName, DurableId, EditDefinitionUrl, EditUrl, ExternalSharingModel, HasSubtypes, ImplementedBy, ImplementsInterfaces, IsActivityTrackable, IsApexTriggerable, IsAutoActivityCaptureEnabled, IsCompactLayoutable, IsCustomizable, IsCustomSetting, IsDeepCloneable, IsEverCreatable, IsEverDeletable, IsEverUpdatable, IsFeedEnabled, IsFieldHistoryTracked, IsFlsEnabled, IsIdEnabled, IsInterface, IsLayoutable, IsMruEnabled, IsProcessEnabled, IsQueryable, IsReplicateable, IsReportingEnabled, IsRetrieveable, IsSearchable, IsSearchLayoutable, IsTriggerable, IsWorkflowEnabled, KeyPrefix, Label, MasterLabel,NamespacePrefix, NewUrl, PluralLabel, PublisherId, QualifiedApiName, RecordTypesSupported from EntityDefinition where publisherid != 'CDC' and IsCustomizable = true limit 2000
Salesforce Forum Ambassador | #BeMore Podcast Host Salesforce Ben Expert Author | 3 x Dreamforce Speaker London Architect Group Co Leader | Solutions Architect ?????
6 个月I've given the article a glow up and made the table of info easier to read/understand, feedback welcome
Salesforce Developer @ Horsa Grow | 3x Salesforce Certified
6 个月That's good to know! Where are all these fields like isApexTriggerable and the others available? As in, can I find them inside an org object through Tooling API query, or is it just in Salesforce documentation?