Salesforce Fact #357 | OrganizationType

To know the organization edition, we generally go to the Company Information page. But do you know there is a field OrganizationType which returns the same result in SOQL.

The below query returns the organization Id and edition of the org:

SELECT Id, OrganizationType FROM Organization

Note: this field is not accessible using the $Organization global variable.

Comments

Popular posts from this blog

Salesforce Fact #192 | Call batch apex from flow

Salesforce Fact #457 | Get current user role name in flow