2012-04-03 11 views
3

BIDSで多数のレポートを作成し、CRMのオンラインインスタンスに展開しました。私が抱えている問題は、以下のコードである。CRMにロードするときのMicrosoft CRM 2011オンライン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の検証が失敗する原因になっているでしょうか?

関連する問題