Я хочу создать представление в Dynamics 365 и не могу фильтровать в системе, поэтому я использую XRMToolBox, чтобы получить XML и настроить его. Итак, вот мой код:
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false" >
<entity name="opportunity" >
<attribute name="name" />
<attribute name="estimatedclosedate" />
<attribute name="parentaccountid" />
<attribute name="estimatedgrossprofit" />
<attribute name="objections" />
<attribute name="escalationstrategy" />
<attribute name="conversionstrategy" />
<order attribute="estimatedclosedate" descending="false" />
<link-entity name="connection" from="record2id" to="opportunityid" alias="MyConnections" >
<link-entity name="connectionrole" from="connectionroleid" to="record1roleid" alias="salesteamcategory" />
</link-entity>
<filter type="or" >
<filter type="and" >
<condition attribute="ownerid" operator="eq-userid" />
<condition attribute="statecode" operator="eq" value="0" />
</filter>
<filter type="and" >
<condition entityname="connection" attribute="record1id" operator="eq-userid" />
<condition entityname="connection" attribute="statecode" operator="eq" value="0" />
<condition entityname="connectionrole" attribute="category" operator="eq" value="1001" />
</filter>
</filter>
<attribute name="modifiedon" />
<attribute name="estimatedvalue" />
<attribute name="opportunityid" />
</entity>
</fetch>
И когда я выполняю, появляется это сообщение об ошибке.
Может кто-нибудь помочь мне почему это происходит?