BIRT Loading error in RTC
Accepted answer
Hi Abhinav,
You can try debugging the report in following way:
1. Narrow down the report to e.g reduce number of work items displayed there
2. If this does not help, you can add following line in the report e.g. in onFetch() method:
java.lang.System.out.println("ROW: " + row["WHATEVER_COLUMN"] + ", " + row["WHATEVER_COLUMN"]);
Then this will be logged to your WAS sysout.log file.
You can try debugging the report in following way:
1. Narrow down the report to e.g reduce number of work items displayed there
2. If this does not help, you can add following line in the report e.g. in onFetch() method:
java.lang.System.out.println("ROW: " + row["WHATEVER_COLUMN"] + ", " + row["WHATEVER_COLUMN"]);
Then this will be logged to your WAS sysout.log file.
Comments
Donald Nong
Sep 30 '14, 2:36 a.m.I would suggest you use Firebug or something similar to find out what is being sent to/from the server after you "run" the report.