[quote user="Nithiya.veera"]
Hi GARABED YEGAVIAN,
what is your requerment Saleorder Report is in it ?
first you create a Fetch report with parameter for order ID after u filter the Orderproduct
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="salesorderdetail">
<attribute name="productid" />
<order attribute="productid" descending="false" />
<link-entity name="salesorder" from="salesorderid" to="salesorderid" alias="aa">
<filter type="and">
<condition attribute="ordernumber" operator="eq" value="@Order ID" />
</filter>
</link-entity>
</entity>
</fetch>
this is for add the product location to the report
[/quote]