I was wondering if there was any way to determine if a field is being tracked by using a SOAP API method call? It doesn't appear as if the describeSObjects actually returns me this information.
Thanks in advance.
Nathaniel
Attribution to: Nathaniel Hogeboom
Possible Suggestion/Solution #1
One thing you can do is run query on *Object*History table and see if your field is there
like this:
SELECT count() FROM LeadHistory where field ='name'
One Problem is that if there is no data in History table then you will not get accurate result.
https://success.salesforce.com/ideaView?id=08730000000glm9AAA
Attribution to: AtulRajguru9
This content is remixed from stackoverflow or stackexchange. Please visit https://salesforce.stackexchange.com/questions/34987