Hi!
In my report I have multi value parameter with default value set to aggregate function AllValues just like described in manual at http://www.telerik.com/help/reporting/designing-reports-parameters-using-multivalue-parameter.html
I'm using Web Forms report viewer to display that report. It works as expected when using in proc session state. However when I switch to out proc session state report viewer doesn't display report anymore. It gets stuck at "Generating report" message.
Trace.axd shows that request ended with HTTP code 500, but no exception is specified.
There must be a problem with aggregate function handling (builtin functions like First/Last doesn't work either) in Web Forms report viewer because when I set report parameter explicitly:
it works as expected.
However I'd still prefer to use default value and AllValues function approach if it is possible.
Tested with latest internal build 6.1.12.717.
Regards,
Lukasz
In my report I have multi value parameter with default value set to aggregate function AllValues just like described in manual at http://www.telerik.com/help/reporting/designing-reports-parameters-using-multivalue-parameter.html
I'm using Web Forms report viewer to display that report. It works as expected when using in proc session state. However when I switch to out proc session state report viewer doesn't display report anymore. It gets stuck at "Generating report" message.
Trace.axd shows that request ended with HTTP code 500, but no exception is specified.
There must be a problem with aggregate function handling (builtin functions like First/Last doesn't work either) in Web Forms report viewer because when I set report parameter explicitly:
myReport.ReportParameters[
"IDs"
].Value =
new
object
[] {1, 2, 3}
However I'd still prefer to use default value and AllValues function approach if it is possible.
Tested with latest internal build 6.1.12.717.
Regards,
Lukasz