Hi all,
I have a Jasperreport which is very simple ( listening of entities ) for 500 entities.
This was running all the time and is still running on my developer machine ( with the same database ) but when I execute it from the production machine i get
I was checking if there is any log indicating, which execution time is exceeded, but no luck.
uiReportRunner.byReportEntity(report)
.withOutputType(ReportOutputType.PDF)
.withParametersDialogShowMode(ParametersDialogShowMode.NO)
.addParam("Account", account) // Parameter alias
.addParam("dateFrom", dateFrom)
.addParam("dateTo", dateTo)
.addParam(JRParameter.REPORT_LOCALE, getLocale())
.inBackground(this)
.runAndShow();
Any idea ?
Regards
Felix