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
Post a Comment