Answers for "how to find sandbox name in salesforce types"

0

how to find sandbox name in salesforce types

SELECT Id, InstanceName, IsSandbox, Name, OrganizationType FROM Organization
Posted by: Guest on January-13-2021
0

how to find sandbox name in salesforce types

private static Boolean runningInASandbox() {
return [SELECT Id, IsSandbox FROM Organization LIMIT 1].IsSandbox;
}
Posted by: Guest on January-13-2021

Code answers related to "how to find sandbox name in salesforce types"

Browse Popular Code Answers by Language