I need to access the data types of the fields in a Salesforce.com object in order to identify each phone, fax, email, and mail field in an object. I've done this from SFDC web services with the DescribeSObject call but the Apex DescribeFieldResult.getType method only returns the display type of the field, not the actual data type.

For example, fields that display a Data Type of Fax like in the image below have a display type of Phone according the getType call. I need something that returns fax for fax fields, mail for mail fields, etc. like the DescribeSObject web service call. Does anyone if that exists in Apex?

Field Information

link|improve this question

80% accept rate
I don't think that Apex knows the actual datatype. I could be wrong. – MJB Apr 28 '10 at 15:09
feedback

1 Answer

up vote 1 down vote accepted

Unfortunately APEX doesn't have that information. That said since you can only define custom phone and email fields and not fax and mail/address fields it's possible to write a definitive list of all fax and mail fields. Thus you might consider hard coding which fields are fax/mail fields and dynamically figuring out which fields are phone and email fields use describeFieldResult.getType() calls.

link|improve this answer
Thanks for the answer. I ended up having to have the user specify the types of custom fields on a configuration screen. – Ben Williams Oct 14 '10 at 11:02
feedback

Your Answer

 
or
required, but never shown

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