Выполнить XML xrmtoolbox для Dynamics 365 с ошибкой "Указанный ключ отсутствует в словаре"
Я хочу создать представление в своей 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>
И когда я выполняю, появляется это сообщение об ошибке.
Кто-нибудь может мне помочь, почему это происходит?
1 ответ
Это некоторая проблема с конкретным плагином XrmToolBox. Скопировал запрос и протестировал его в конструкторе FetchXML.
Кроме этих attributes
, все остальное в порядке и успешно проанализировано. Это могут быть настраиваемые атрибуты, и в них отсутствует префикс, напримерnew_
или какого-либо другого конкретного издателя.
<attribute name="estimatedgrossprofit" />
<attribute name="objections" />
<attribute name="escalationstrategy" />
<attribute name="conversionstrategy" />