Hi all
I am trying to create quote approval workflow. I am using this tool - msdyncrmWorkflowTools (1.0.52.1):Rollup Functions.
The workflow depends on product hierarchy level.
When i start the process the system provides the error -
"Unexpected exception from plug-in (Execute): msdyncrmWorkflowTools.RollupFunctions: System.Xml.XmlException: Data at the root level is invalid. Line 1, position 24"
There is XML file which i created by Advanced find in CRM -
<?xml version="1.0"?>
-<fetch distinct="false" mapping="logical" output-format="xml-platform" version="1.0">
-<entity name="quotedetail">
<attribute name="productid"/>
<attribute name="productdescription"/>
<attribute name="priceperunit"/>
<attribute name="quantity"/>
<attribute name="new_kmextendedamount"/>
<attribute name="quotedetailid"/>
<order descending="false" attribute="productid"/>
-<link-entity name="product" alias="aa" link-type="inner" to="productid" from="productid">
-<filter type="and">
<condition attribute="new_hierarchyproductgroup" value="10" operator="eq"/>
</filter>
</link-entity>
</entity>
</fetch>
Please help me to clarify what is wrong?