Identify if a Salesforce Object is Custom or Standard Identify if a Salesforce Object is Custom or Standard using isCustom in apex Post author:Swapnil Jaiswal Post published:March 8, 2023 Post category:Blog / Salesforce Overview Here you will learn how to Identify if a Salesforce Object is Custom or Standard using isCustom in apex. Code snippets Here is the code to loop through all salesforce objects and check if the object is standard or custom object. Boolean isCustomObject = true; for(Schema.SObjectType objTyp : Schema.getGlobalDescribe().Values()) { SObjectType objInfo = Schema.getGlobalDescribe().get(objTyp.getDescribe().getName()); if(objInfo != null) { isCustomObject = objInfo.getDescribe().isCustom(); System.debug('Object Name = ' + objTyp.getDescribe().getLabel() + ' === Is Custom = ' + isCustomObject); } } The code given below check if specific object is Custom or Standard Object. In my case cbugs__Student__c is a Custom object. Boolean isCustomObject = true; for(Schema.SObjectType objTyp : Schema.getGlobalDescribe().Values()) { if(objTyp.getDescribe().getName() == 'cbugs__Student__c') { SObjectType objInfo = Schema.getGlobalDescribe().get(objTyp.getDescribe().getName()); if(objInfo != null) { isCustomObject = objInfo.getDescribe().isCustom(); } if(isCustomObject) { System.debug(objTyp.getDescribe().getName() + ' Custom object'); } else { System.debug(objTyp.getDescribe().getName() + ' Standard object'); } } } getName() used to get API NAME of Salesforce object. By using getLabel() method we can find label of any Salesforce object. See in action - How to identify Standard & Custom Salesforce Objects You Might Also Like Number patterns set 2 November 7, 2022 Asking for multiple permissions in android Java September 19, 2022 Salesforce Interview Questions for 0-1 year of experience April 6, 2025