Hi All,
I have faced with a bit strange problem. My goal is to develop SSRS report. The requirements were not defined from the very beginning and have been changing day after day, so I had to redevelop it (report) many times. So, finally – the problem: when I try to run the report, it show me the dialog, I’m choosing necessary parameters, but the reports renders the wrong data. Definitely! In my main method (of SrsReportRunController class, the method, which should filter the parameter and pass the correct one – doesn’t invoked. I mean – even if I comment all code in my main the method of the controller class, still: I can see the dialog, I can choose the parameters, the report is renders (with wrong data, but skip it…) – the problem that the main method is not invoking.
Here is the code of my main method:public static void main(Args _args)
{
ReportController controller = new ReportController();
controller.parmReportName(ssrsReportStr(DataReport, Report));
controller.parmArgs(_args);
controller.createReport();
//controller.startOperation();
}
}
createReport() – is the method, where I have a logic to ”filter” my parameter, and provide with correct one.
I have the same result if comment //controller.createReport() and uncomment controller.startOperation();
public static void main(Args _args)
{
ReportController controller = new ReportController();
controller.parmReportName(ssrsReportStr(DataReport, Report));
controller.parmArgs(_args);
//controller.createReport();
controller.startOperation();
}
}
I have the same result if comment all text init.
What I was trying to fix this:
-
Restart the AOS and SSRS
-
Clean cache (.auc)
-
Reset the settings
Does anybody had the similar problem? Please share your experience.
Thank you
Oleksandr
*This post is locked for comments