2012-04-03 265 views
3

我在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數據源的報表。請幫忙。我無法弄清楚什麼是錯的。

回答

0

我不希望這會給你那個錯誤,但是當你指定enableprefiltering時你不需要指定prefilterparametername嗎?也許這是導致FetchXML驗證失敗?