Question:
How to Retrieve the CRM Record IDs, Names, and Developer Names of Record Types in Veeva CRM?
Answer:
In order to retrieve this information of all Record Types existing in Veeva CRM, run the following Salesforce (SOQL) Query:
select id, DeveloperName, SobjectType, name, IsActive from RecordType
In the event, the SFDC ID value of the RecordTypeId field is known, run the following query:
select id, DeveloperName, SobjectType, name, IsActive from RecordType where id = 'RecordTypeIdvalue'
Related Documentation:
Knowledge Base:
Salesforce Documentation: