我有以下Fetchxml自定義報告讓所有的活動信息:SSRS使用業務發展Studio和FetchXML
<fetch distinct="false" mapping="logical" output-format="xml-platform" version="1.0">
<entity name="lead" >
<attribute name="companyname" />
<attribute name="leadid" />
<attribute name="gr_totaltraveldays" />
<attribute name="gr_marketvertical" />
<attribute name="leadsourcecode" />
<attribute name="lastname" />
<attribute name="firstname" />
<attribute name="estimatedamount" />
<attribute name="gr_dayssincelastactivity" />
<attribute name="new_numberofattendees" />
<attribute name="ownerid" />
<order descending="false" attribute="ownerid" />
<filter type="and" >
<condition attribute="statecode" value="0" operator="eq" />
</filter>
</entity>
我從Advance Find
在CRM 2011 得到這個FetchXML
當我使用FetchXML我的報告數據集,我得到以下錯誤:
gr_totaltraveldays
字段在那裏。我查看了數據庫中的字段,該字段位於LeadExtensionBase
表中。
您是否100%確定您的目標是該高級查找結果的同一個CRM組織? –
@GuidoPreite是的,我雙重檢查了一切。難道這是'gr_totaltraveldays'在LeadExtensionBase表中的問題? –
crm 2011內部的自定義字段始終位於擴展表中,不適用於 –