Hello Community,
I am trying to create a quotation report on the CRM online platform. I have this fetchxml but no data is coming out. I am using Visual Studio to create the report.
<fetch mapping="logical" output-format="xml-platform" version="1.0" distinct="true"><entity name="quote"enableprefiltering="1" prefilterparametername="CRM_FilteredQuote"><attribute name="name" /><attribute name="customerid" /><attribute name="statecode" /><attribute name="totaltax" /><attribute name="totalamount" /><attribute name="quoteid" /><attribute name="createdon" /><attribute name="modifiedon" /><order descending="false" attribute="name" /><link-entity name="quotedetail" to="quoteid" from="quoteid" alias="aa"><attribute name="productid" /><attribute name="productdescription" /><attribute name="priceperunit" /><attribute name="quantity" /><attribute name="extendedamount" /><attribute name="quotedetailid" /></link-entity><link-entity name="systemuser" to="msdyn_accountmanagerid" from="systemuserid" alias="ab"><attribute name="fullname" /><attribute name="internalemailaddress" /></link-entity></entity></fetch>
I need a report that will show quote details as as the quote lines and account manager details. What's wrong with my fetchxml?