Salesforce Stack Exchange is a question and answer site for Salesforce administrators, implementation experts, developers and anybody in-between. Join them; it only takes a minute:

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

The SObjectField class has a getDescribe() method. Does anyone know of a creative way to get the field label for use in Apex? There does not seem to be a getLabel() method per the official documentation.

share|improve this question
    
Please reference DescribeFieldResult Class – Oleksiy 9 hours ago

As you mentioned, you need to call getDescribe(), which returns a DescribeFieldResult.

SObjectField field = Opportunity.AccountId;
DescribeFieldResult describe = field.getDescribe();
String label = describe.getLabel();
share|improve this answer

You can get a field's label using the following one-liner:

String label = Account.Name.getDescribe().getLabel();
System.debug(label); //prints 'Account Name'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.