加载到CRM中时Microsoft Dynamics CRM 2011 Online Fetchxml报告错误

问题描述:

我在BIDS中创建了大量报告,并将它们部署到我的CRM的在线实例。我遇到的问题是以下一段代码。加载到CRM中时Microsoft Dynamics CRM 2011 Online Fetchxml报告错误

<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> 

看起来很简单,但它给了我以下错误。

无效的数据源:不支持报告类型。 Microsoft Dynamics CRM Online仅支持使用FetchXML数据源的报表。请帮忙。我无法弄清楚什么是错的。

我不希望这会给你那个错误,但是当你指定enableprefiltering时你不需要指定prefilterparametername吗?也许这是导致FetchXML验证失败?