Hello
I Have added a fetch xml for SSRS report.
I have added enableprefiltering="1" so that i have a parameter
I have added another parameter in new Data set
I want to pass value enableprefiltering parameter to another parameter
DATASET1
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="salesorder" enableprefiltering ="1">
<attribute name="name" />
<attribute name="new_bookedpovalue" />
<attribute name="new_poamount" />
</link-entity>
</entity>
</fetch>
DATASET 2
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true">
<entity name="quote">
<attribute name="name" />
<attribute name="statecode" />
<attribute name="quoteid" />
<order attribute="name" descending="false" />
<link-entity name="account" from="accountid" to="customerid" visible="false" link-type="outer" alias="a_d6057f7d5c81e811a963000d3af04fb0">
<attribute name="new_customercode" />
</link-entity>
<link-entity name="salesorder" from="quoteid" to="quoteid" link-type="inner" alias="ad">
<filter type="and">
<condition attribute="salesorderid" operator="eq" value="@CRM_salesorder"/>
</filter>
</entity>
</fetch>
Please help