Hello fellow community memebers,
I am running into an error as provided in the screenshot below.
The fetchXML I'm using to get records is as:
<fetch output-format="xml-platform" mapping="logical" distinct="true" count="5000" page="@{variables('PageNumber')}" paging-cookie="@{variables('PagingCookie')}">
<entity name="contact">
<attribute name="fullname" />
<attribute name="telephone1" />
<attribute name="contactid" />
<attribute name="mcs_expitingmtplpolicies" />
<attribute name="mcs_claimsawaitingdocument" />
<order attribute="fullname" descending="false" />
<link-entity name="mcs_claimparty" from="mcs_customer" to="contactid" link-type="inner" alias="ae">
<link-entity name="mcs_claim" from="mcs_claimid" to="mcs_claim" link-type="inner" alias="af">
<attribute name="mcs_dateofregistration" />
<attribute name="mcs_policystatus" />
<filter type="and">
<condition attribute="mcs_dateofregistration" operator="olderthan-x-months" value="3" />
<condition attribute="mcs_policystatus" operator="eq" value="803750000" />
</filter>
<link-entity name="mcs_policy" from="mcs_policyid" to="mcs_policy" link-type="inner" alias="ag">
<link-entity name="product" from="productid" to="mcs_productlookup" link-type="inner" alias="ah">
<attribute name="productnumber" />
<filter type="and">
<filter type="or">
<condition attribute="productnumber" operator="eq" value="4401" />
<condition attribute="productnumber" operator="eq" value="1112" />
<condition attribute="productnumber" operator="eq" value="1113" />
<condition attribute="productnumber" operator="eq" value="1114" />
</filter>
</filter>
</link-entity>
</link-entity>
</link-entity>
</link-entity>
</entity>
</fetch>
Can anybody please help me understand or resolve this issue?
Many thanks.