Forum Replies Created

  • Bob Nunemaker

    Member
    October 2, 2019 at 9:50 pm in reply to: How to get the Recordtype Id using Dynamic Apex in salesforce?

    The globalDescribe solution is decent and works.  However, it is VERY slow and takes a lot of time at Enterprise size orgs.  Can really kill performance.  Instead, if you know what you want, you can use:

    string recTypeID = Schema.SobjectType.Campaign.getRecordTypeInfosByName().get('Program').getRecordTypeId();

    and this also means you could pass the Record Type name to a method needing this.  However, the object can't be dynamic, so you might need a method per Object desired to use this.

Popular Salesforce Blogs

Popular Salesforce Videos