I have been following the tutorials on creating PDFs of existing reports. I have a function where I pass in the path name to the report (TRDP file).
Can you add filter or parameter to the report?
ReportProcessor reportProcessor = new ReportProcessor();
Telerik.Reporting.UriReportSource uriReportSource = new Telerik.Reporting.UriReportSource();
uriReportSource.Uri = reportPathName;
//uriReportSource.Parameters.Add();
Console.WriteLine("Rendering Report " + Path.GetFileName(reportPathName));
RenderingResult result = reportProcessor.RenderReport("PDF", uriReportSource, null);
Console.WriteLine("Done Rendering Report " + Path.GetFileName(reportPathName));
bool success = !result.HasErrors;