Welcome to my blog

I have been working with Salesforce for quite a while, so don’t hesitate to contact me if you have any questions or want some advice.

s f

Subscribe
Follow Us
h

Refer Object Field Label Name in Visualforce

 . Visualforce  . Refer Object Field Label Name in Visualforce
Call Outbound Message Functionality in Salesforce Process Builder

Refer Object Field Label Name in Visualforce

How to Get the Label Names for Refer Object’s Field in Salesforce?

Many case we many need to use object field label name in the Visualforce page. We can use “$ObjectType” system class.

Sample Code :

<apex:outputLabel value="{!$ObjectType.Account.fields.Name.label}" />

Post a Comment