function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Vootkuri AkhilaVootkuri Akhila 

Associating Record type to a field in a VF page

Hi,

My requirement is, To a particular field in VF Page, I need to get value from a Record Type. Please help me in solving it.

Thanks in advance.
Here I amHere I am
Hi Vootkuri Akhila,

Please go through the below link it may be userful for you

https://developer.salesforce.com/forums/?id=906F000000095W3IAI
DebasisDebasis
Hi Vootkuri,

if you want to get recordtype details of any particular object then yuo can use below describe call
Id devRecordTypeId = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Development').getRecordTypeId();
Thanks,
Debasis