我正在为 CRM 的 SSRS 中创建报告。我有一个包含约会信息数据集的表,我注意到它不允许我报告所需的与会者???这是真的吗?如果是这样,是否有解决方法?我基本上希望我的报告显示约会细节,当然还有谁参加了。
任何建议都非常感谢!
下面是我在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>
要获取此信息,您必须创建另一个数据源并从 ActivityParty 实体检索信息。所有项目(如必需与会者、约会中的可选与会者、发件人、收件人、抄送、电子邮件中的密件抄送、e.t.c.)都存储在活动方实体中。