SSRS无法使用"所需的与会者"在数据集中?

时间:2014-04-07 15:29:59

标签: sql xml reporting-services crm fetch

我正在SSRS for CRM中创建报告。我有一个数据集用于预约信息的表格,我注意到它不允许我报告所需的与会者???这是真的?如果是这样,有解决方法吗?我基本上希望我的报告显示约会详情当然是谁参与。

非常感谢任何建议!

以下是我在CRM 2013中使用Advanced Find收集的fetchXML。

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">




<entity name="appointment">


<attribute name="subject"/>

<attribute name="statecode"/>

<attribute name="scheduledstart"/>

<attribute name="activityid"/>

<attribute name="instancetypecode"/>

**<attribute name="requiredattendees"/>**

<order attribute="subject" descending="false"/>



<link-entity name="account" from="accountid" to="regardingobjectid" alias="ae">




<filter type="and">


<condition attribute="accountid" operator="eq" value="@name"/>

</filter>

</link-entity>

</entity>

</fetch>

1 个答案:

答案 0 :(得分:0)

要获取此信息,您必须创建另一个数据源并从ActivityParty实体检索信息。所有项目,如requiredattendees,optionalattendees in appointment,from,to,cc,bcc in email,e.t.c。存储在ActivityParty实体中。