MS CRM Online:获取没有相关记录的记录

时间:2016-04-26 07:59:47

标签: reporting-services dynamics-crm dynamics-crm-online dynamics-crm-2015

当我的CRM在线时,需要帮助才能获取联系人与fetch xml报告中的帐户无关的帐户记录。 尝试高级查找但无法获得它。

谢谢, 普里亚

2 个答案:

答案 0 :(得分:1)

这是一个FetchXML,告诉您帐户未与联系人

相关联
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
  <entity name="account">
    <attribute name="name" />
    <attribute name="primarycontactid" />
    <attribute name="telephone1" />
    <attribute name="accountid" />
    <order attribute="name" descending="false" />
    <filter type="and">
      <condition attribute="primarycontactid" operator="null" />
    </filter>
  </entity>
</fetch>

答案 1 :(得分:1)

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
  <entity name="incident">
    <attribute name="title" />
    <attribute name="ticketnumber" />
    <attribute name="createdon" />
    <attribute name="incidentid" />
    <attribute name="caseorigincode" />
    <order attribute="title" descending="false" />
    <filter type="and">
      <condition attribute="customerid" operator="null" />
    </filter>
  </entity>
</fetch>