我想创建一个custom
报告,它将显示所有关联Products
的 all/any Order
。这意味着在订单页面中显示所有订单和相关产品,在任何订单记录页面中,它应该只显示与该订单相关的产品。
以前我是使用报告向导完成的。它按我的意愿工作。
但我无法在商业智能开发工作室中做到这一点。
这是 FetchXML
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="salesorderdetail">
<attribute name="productid" />
<attribute name="productdescription" />
<attribute name="priceperunit" />
<attribute name="quantity" />
<attribute name="extendedamount" />
<attribute name="salesorderdetailid" />
<order attribute="productid" descending="false" />
<link-entity name="salesorder" from="salesorderid" to="salesorderid" alias="ad">
<filter type="and">
<condition attribute="salesorderid" operator="eq">
</condition>
</filter>
</link-entity>
</entity>
</fetch>
我如何修改这个 XML 使其像上面一样工作?