Hi,
When creating SSRS report, I'm adding a selection in my Data Contract Class, which the plan is to determine it will process a detail or a summary report. In the SSRS report it self, it will have 2 design, for detail and summary.
Question is, in my controller class, what should I write to read that result selection from contract class ?
In some blog or thread, I found some example of needed to method preRunModifyContract(). May I know it looks ? and how about the method main().
I used to put the report name and design in this main() method. Something like this:
controller.parmReportName(ssrsReportStr(ItemSummaryReport,Empty)); controller.parmArgs(_args); controller.startOperation();
But now what should the main method() need to be written, while we have preRunModifyContract().
Thanks.