Microsoft CRM 2011 Online Fetchxml Report an error while loading into CRM

I have created many reports in BIDS and deployed them to an online instance of my CRM. The problem I am facing is the following piece of code.

<fetch distinct="true" mapping="logical" output-format="xml-platform" version="1.0">
<entity name="quote" enableprefiltering="1"> 
<attribute name="quotenumber"/>
<attribute name="createdon"/>
<attribute name="ownerid"/>
<attribute name="description"/> 
<attribute name="quoteid"/> 
<link-entity name="quotedetail" alias="aa" to="quoteid" from="quoteid"> 
<attribute name="quantity"/>
</link-entity>
</entity>
</fetch>

      

Seems simple enough, but it gives me the following error.

Invalid data source: The report type is not supported. Microsoft Dynamics CRM Online only supports reports that use FetchXML data sources. PLEASE HELP. I cannot figure out what is wrong.

+3


source to share


1 answer


I wouldn't expect it to give you this error, but you don't need to specify the prefilterparamet name when you specify enableprefiltering? Perhaps this is causing the FetchXML validation to fail?



0


source







All Articles