Activity Forums Salesforce® Discussions Recordtype name in the criteria of Immediate actions of Salesforce Process Builder

  • PRANAV

    Member
    February 12, 2018 at 8:31 am

    Hi Saurabh,

    You can use either of this in Process Builder:

    Record Type ID: [Object].RecordTypeId
    This option must use the full 18 digit record type ID of the record type.

    Record Type Name: [Object].RecordTypeName
    This option needs to use the Display Name of the Record Type

    Record Type Developer Name: [Object].RecordType.DeveloperName
    This option needs to use the API name of the record type found on the "Record Type Name" field on the record type details page.

    To get the record type ID, use Dev Console / Workbench and query:

    SELECT Name, Id FROM RecordType Where SobjectType='<object name here>'
    example:
    SELECT Name, Id, SobjectType FROM RecordType Where SobjectType='Account'

    Hope this helps you.

Log In to reply.

Popular Salesforce Blogs

Popular Salesforce Videos