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
MaxFrielMaxFriel 

Field description access...

I am looking to build a client a list of all fields along with their descriptions.  I can not find access to the description anywhere in Apex or any other API.  Am I missing something?  Or does it just not exist?

Jia HuJia Hu
If you want to access the meta data of a field, use
Describe Field Result Methods
http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_methods_system_fields_describe.htm

Schema.DescribeFieldResult F = Account.AccountNumber.getDescribe();
Jia HuJia Hu
Sorry for the miss.
So far, we cannot get the field description by API.

check the idea below
Object/Field Description text available to API and APEX Describe call
http://success.salesforce.com/ideaView?id=08730000000gO3LAAU