2016-03-01 55 views

回答

1

你應該嘗試使用查詢類似以下內容:

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true"> 
    <entity name="account"> 
    <attribute name="name" /> 
    <attribute name="primarycontactid" /> 
    <attribute name="telephone1" /> 
    <attribute name="accountid" /> 
    <order attribute="name" descending="false" /> 
    <link-entity name="activityparty" from="partyid" to="accountid" alias="ae" link-type="outer"> 
     <link-entity name="activitypointer" from="activityid" to="activityid" alias="af" link-type="outer"> 
     <filter type="and"> 
      <condition attribute="activitytypecode" operator="eq" value="4210" /> 
     </filter> 
     </link-entity> 
    </link-entity> 
    <filter type="and"> 
     <condition entityname="af" attribute="activityid" operator="null" /> 
    </filter> 
    </entity> 
</fetch> 

代碼是基於下面的文章 - https://msdn.microsoft.com/en-us/library/dn531006.aspx

0

高級查找中不支持左外部連接。您將不得不使用像Andrii發佈的自定義查詢。

編輯:如果你想用自定義fetchXml運行你的報告可能使用SQL Server數據工具的Reporting Authoring extensions。您可以複製&將您的fetchXml粘貼到那裏,然後將報告上傳到CRM。

+0

嗨,我已經通過預先查找下載了獲取xml,並根據需要修改了查詢。現在我怎麼把它放回/導入文件到系統中? –

+0

只要編輯答案,如果幫助... – Jordi

相關問題