【发布时间】:2018-10-02 12:03:30
【问题描述】:
我在 Visual Studio 2015 的报表服务器项目中创建了一个 RDL。我只是使用了来自 Dynamics 的 Fetch XML 并将其作为我的查询插入到 RDL 中。
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="q_qentity">
<attribute name="q_jid" />
<attribute name="q_titlename" />
<attribute name="q_titlecode" />
<attribute name="q_surveyid" />
<attribute name="q_approveddate" />
<attribute name="q_fiscalyear" />
<attribute name="q_qentityid" />
<attribute name="s_type" />
<attribute name="createdon" />
<attribute name="createdby" />
<attribute name="createdonbehalfby" />
<order attribute="q_jid" descending="false" />
<filter type="and">
<condition attribute="q_jid" operator="eq" value="285" />
</filter>
</entity>
</fetch>
在 Visual Studio 上它运行良好,但是当我将它保存到 Reports Entity 并尝试运行时,这是我得到的:
我还嵌入了数据源,因为我在线阅读了共享数据源给出的问题。谢谢。
【问题讨论】:
标签: reporting-services dynamics-crm microsoft-dynamics dynamics-365