How to Setup Custom Metadata Types for Record Types

Business Problem

You have heard time and time again, do not hard code Ids into your validation rules, flows and other Salesforce development. But you don't quite understand how to use Custom Metadata Types to help you solve this problem. This article will show you how to setup a solution for storing the names and Ids for all Record Types on all objects in Salesforce that you can add to as necessary.

We highly recommend going through the effort to set this up, it makes your deployments so much easier and less stressful when you only have to update the Id in one place. Plus, it is a Salesforce best practice!

How to Instructions

How to Configure a Custom Metadata Type

Go to: Setup > Custom Metadata Types > New Custom Metadata Type

New CMT

Update the following information:

  • Label = Record Type Setting
  • Plural Label = Record Type Settings
  • Description = This CMT will hold the Object, Record Type Name and Record Type Id
  • Click Save
Name CMT

You will notice this screen looks very similar to a custom object screen. That's because this is essentially what we are creating except the data is stored in the 'back end' versus a tab on the UI.

Next, we will create the custom fields. This process will look very similar to creating a custom field for an object.

Click New under Custom Fields.

CMT Custom Field

  • Select Text and click Next
CMT Custom Field2

  • Name = Record Type Name
CMT Custom Field3

  • Add field to the page layout
  • Click Save and New
CMT Custom Field4

  • Repeat the same process and create two more fields:

    • Object
    • Record Type Id

When you are done, you should see three custom fields like this:

CMT Custom Field5

Next, we need to add a record for each Record Type Id we want to reference.

Click the button called Manage Record Type Settings

CMT Manage Records

  • Click New
CMT New Record

Enter the following information:

  • Label = Name of object - Record Type Name
  • Record Type Name = Name of the Record Type
  • Record Type Id = 18 digit Id of the Record Type - if you do not know how to locate this Id, follow the steps in this Salesforce article.
  • Object = Name of the object that contains the record type

In this example, we are storing the Record Type Name and Id of the Email record type on the Campaign object.

CMT New Record Data

You will see a screen that looks like this. To navigate back to the new Custom Metadata Type you just created, click Custom Metadata Types.

Yes, we agree with you the navigation here is not ideal.

CMTNavigation

  • Locate Record Type Setting and click on click Manage Records to see the record you just created.
  • Click New to repeat this process for another Record Type.
CMTNavigation2

How to Query a Custom Metadata Type in a Flow

We have a flow that is creating a Campaign record and we need to specify the Record Type Id in the flow. We have a Create Records element that is already configured to create the Campaign, it is just missing the Record Type Id.

  • Go to your Flow and click the + Sign before the element that needs to reference the Record Type Id.
Plus Sign Create Campaign

  • Click Get Records
CMT Get Records

  • Enter the Label = Get Record Type Setting
  • Choose Object = Record Type Setting (do not choose Record Type)
CMT Get Records2

  • You will need the DeveloperName from your Record Type Setting record. In our example, the DeveloperName = Campaign_Email
CMT Get RecordsDevName

  • Make sure your Get Records element looks like this:

    • Object = Record Type Setting
    • DeveloperName = Campaign_Name
    • Only get the first record.

CMT Get Records3.1

  • Click on the element that needs the Record Type Id value and add Record Type Id as  field. Value is from the Get Record Type Setting.
CMT CampaignRT

  • Value = {!Get_Record_Type_Setting.Record_Type_Id__c}
CMT CampaignRT1

Now you are ready to test it and make sure the record is created with the correct record type.

Congratulations, you have just successfully setup custom metadata types for Record Types! No more hard coding Ids again!

For any questions, comments, concerns – let us know in the comment section below!
We would love to hear from you!

Share This Story, Choose Your Platform!

About the Author

Cheryl Fernandes

Cheryl is a certified Salesforce Application Architect and is the Founder and Lead Salesforce Consultant at Blu Ninjas. She has been working with Salesforce for 12 years and has helped companies in financial services, insurance and beauty industries implement solutions on the platform. Flow is her favorite Salesforce declarative tool, it is a game changer for anyone who does not know how to code.

Leave a Reply

Your email address will not be published. Required fields are marked *

Scroll to Top