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
Rajesh PotnuruRajesh Potnuru 

SFDC Report Types....

Hello All,

I'm trying to get a list all SFDC Report Types that are able to utilize the "Classification Code" or the "Account Classification" attributes.
Is anyone able to help me with that?

Thanks & Regards,
Rajesh Potnuru
RamuRamu (Salesforce Developers) 
I believe you want to get the list of report types that include two particular fields you mentioned in the description. You can retrieve the data using matadata api. Below is an article that shows all the properties that are included when you retrieve the report types data using metadata api.

https://www.salesforce.com/us/developer/docs/api_meta/Content/meta_reporttype.htm

The below article outlines how to use metadata api through apex

http://andyinthecloud.com/2013/10/27/introduction-to-calling-the-metadata-api-from-apex/
Rajesh PotnuruRajesh Potnuru
Thanks Ramu