BIRT report failing in SCTM13
Due to the introduction of global reports in 13.0 there is a modification required to run custom BIRT reports.
The method "reportDataProvider.prepareData()" that retrieves data from the Silk Central web service now requires the project ID and the web service URL can now also be configured.
To update templates for Silk Central 13.0, open the BIRT template in a text editor and find the line following line:
reportDataProvider.prepareData(url,handlerId,sessionId,reportId);
Make the following change:
reportDataProvider.prepareData(params["currWebserviceURL"],handlerId,sessionId,reportId,params["currProjectID"]);