How to get list of objects used in an organization using apex in Salesforce?
Sample code: //Just to display, use the below code. public class ImportCtrlr { public Map<String, Schema.SObjectType> objs {get; set;} public ImportCtrlr() { objs = Schema.getGlobalDescribe(); } } For ....