GetRecordTypeId without SOQL

public static id GetRecordTypeId(string objectAPIName, string recordTypeName)
    {
        Map<String, Schema.SObjectType> sobjectSchemaMap;
        if(String.isBlank(objectAPIName) || String.isBlank(recordTypeName))
        {
            return null;
        }
        if(sobjectSchemaMap == null)
        {
            sobjectSchemaMap = Schema.getGlobalDescribe();
        }
        Schema.SObjectType sObjType = sobjectSchemaMap.get(objectAPIName) ;
        
        Schema.DescribeSObjectResult cfrSchema = sObjType.getDescribe() ;
        
        Map<String,Schema.RecordTypeInfo> RecordTypeInfo = cfrSchema.getRecordTypeInfosByName();
        Id recordTypeId = RecordTypeInfo.get(recordTypeName).getRecordTypeId();
        return recordTypeId;
    }

Type of Visual Workflow (Flows) || Flow Types || Standard Flow Types

A flow or flow version’s type determines which elements and resources are supported, as well as the ways that the flow can be distributed.
The following flow types are supported in the Cloud Flow Designer.


  1. Flow: Requires user interaction, because it has one or more screens, steps, choices, or dynamic choices. This flow type doesn’t support wait elements. Flow A flow can be implemented with a custom button, custom link, direct URL, Visualforce page, or Salesforce1 action
  2. Autolaunched Flow:Doesn’t require user interaction. This flow type doesn’t support screens, steps, choices, or dynamic choices. Autolaunched Flow An autolaunched flow can be implemented any way that a flow can, as well as with a process action, workflow action (pilot), or Apex code.
  3. User Provisioning Flow:Provisions users for third-party services. A user provisioning flow can only be implemented by associating it with a connected app when running the User User Provisioning Flow Provisioning Wizard. Provisions users for third-party services. For example, use this flow type to customize the user provisioning configuration for a connected app to link Salesforce users with their Google Apps accounts 

Counters