Hello,
I have to create a report which uses "From Date" and "To Date" as dynamic values from user. For achieving this I have created two parameters of Date/Time type in ssrs report and added the following filter in fetchxml:
<filter type="and">
<condition attribute="date" operator="on-or-after" value="@CRM_FromDate" />
<condition attribute="date" operator="on-or-before" value="@CRM_ToDate" />
</filter>
This works fine on visual studio but the .rdl file uploaded in crm throws an error: The expected parameter has not been supplied for the report. The error shows up even before prompting for the "From Date" and "To Date"

There is no security role issue, as I've logged in as administrator neither do I have multiple Datasets to focus on their order.
Any help would be appreciated.
*This post is locked for comments
I have the same question (0)