Page 1 of 1

Pass additional parameters to a drill down report

Posted: Wed Jul 21, 2010 10:28 am
by Tom7
Hi All

Is there any way to pass additional parameters to a drill down report from the master report? I will be selecting back high level data based on a date range in the master report, where both the start date and end date are saved in normal variables (called startDate & endDate), I am already using 2 of the drill down parameters but I need to pass these two date variables to the drill down report also, and populate local startDate and endDate variables in that report.

Many Thanks

Tom

Pass additional parameters to a drill down report

Posted: Thu Jul 22, 2010 12:55 am
by Andrew
Hello,

Yes, the number of parameters is limited in 3. We will try to find the solution and let you know about the result.

Thank you.

Pass additional parameters to a drill down report

Posted: Fri Jul 23, 2010 12:42 am
by Jan
Hello Tom,

Please add following code to BeforePrintEvent of component which require additional drill-down parameters:

Code: Select all

MyComponent.DrillDownParameters.Add("NameOfParameter", value);
Thank you.