"CRRDV0015E The report query results cannot be displayed" and "Error initializing reports service" error messages
CRRDV0015E The report query results cannot be displayed. The server encountered an unexpected error that prevented it from retrieving the report query results. To find more details about this issue, open the JavaScript console of your browser by pressing F12, refresh the widget, and check the JavaScript console for any resulting errors.Loading...
Error initializing reports service
Accepted answer
Comments
Many thanks I will give this a go and let you know how we get on.
This would depend on your environment, WAS could be setting it too in its startup.
Searhing the web, found the following.
the JVM initializes it to a platform specific default value. For Windows, the default is obtained by a call to a Win32 API method. For Linux / Solaris the default is apparently hard-wired. For other JVMs it could be something else.
If you really wanted to find out, you would have to run code on the running WAS JVM and check the result of the following.
System.getProperty("java.io.tmpdir");
It can be changed by specifying the argument like -Djava.io.tmpdir=/tmp in the WAS JVM's Generic JVM arguments
Hi many thanks your fix worked. Changed the properties of "Reports Temp Folder" to a new temp folder and now the reports and widgets work when running the service as the was user.
Comments
Brian Lahaie
Sep 18 '15, 11:40 a.m.I was getting the same error in my dashboard widgets. To resolve the issue I did the following:
(1)I stopped the server
(2)Deleted the following directories:
C:\IBM\JazzTeamServer60\server\tomcat\work\Catalina\localhost\qm
C:\IBM\JazzTeamServer60\server\tomcat\work\Catalina\localhost\ccm
C:\IBM\JazzTeamServer60\server\tomcat\work\Catalina\localhost\jts
(3)And then started the server.
After deleting the directories and restarting the server, the widgets started to display data again.