3

我在 BIDS 中创建了大量报告,并将它们部署到我的 CRM 的在线实例中。我遇到的问题是以下代码。

<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 数据源的报表。请帮忙。我无法弄清楚出了什么问题。

4

1 回答 1

0

我不希望这会给您带来该错误,但是您在指定 enableprefiltering 时不需要指定 prefilterparametername 吗?也许这导致 FetchXML 验证失败?

于 2012-04-03T19:10:38.917 回答