如何获取CRM中过去24小时内创建或更改活动的记录

时间:2014-02-01 10:08:56

标签: reporting-services dynamics-crm-2011 fetchxml

我正在创建CRM 2011 Fetch-xml报告,并希望获得其活动在过去24小时内已更改或创建的联系人。 我怎么能这样做。

1 个答案:

答案 0 :(得分:2)

首先检索所有联系人,然后选择内部联接到活动,然后添加条件以仅获取过去24小时内修改的活动。

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true">
  <entity name="contact">
    <attribute name="fullname" />
    <attribute name="telephone1" />
    <attribute name="contactid" />
    <order attribute="fullname" descending="false" />
    <link-entity name="activitypointer" from="regardingobjectid" to="contactid" alias="ac">
      <filter type="and">
        <condition attribute="modifiedon" operator="last-x-hours" value="24" />
      </filter>
    </link-entity>
  </entity>
</fetch>