我試圖使用動態CRM(FetchXML)在報表服務中添加一個簡單的子報表。這一切都在我的本地機器上,這兩個報告都沒有發佈。我只是試圖讓他們在Reporting Services中運行。我在字段「名稱」的子報表中添加了一個參數。然後我在主報告中添加了一個子報告。然後我通過子報表屬性選擇了子報表,並在這裏傳遞了參數。動態CRM 2011的子報表問題使用SSRS的報表
下面是從主要報告
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="account">
<attribute name="name" />
<attribute name="ownerid" />
<attribute name="new_databaseserver" />
<attribute name="new_databasename" />
<attribute name="accountid" />
<order attribute="name" descending="false" />
</entity>
</fetch>
的FetchXML這裏是FetchXML從子報表
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="account">
<attribute name="name" />
<attribute name="accountid" />
<attribute name="new_adam" />
<order attribute="name" descending="false" />
</entity>
</fetch>
這裏是錯誤:
[rsErrorExecutingSubreport]在執行時發生錯誤子報表'SubReport1'(實例:19iT0R0x0S0):子報表'SubReport1'的數據檢索失敗,位於:/ SubReport1。請檢查日誌文件以獲取更多信息。
我整個週末都在爲這個問題忙碌着。任何幫助將非常感激。
您是否檢查日誌文件以獲取更多信息? –
我無法在家接觸他們,但我明天就可以看到。到目前爲止,您是否看到我粘貼的內容有問題?是否可以在Dynamics CRM中使用子報表? – SusieQ