Hi all,
I'm using this simple code below to open a WebItelligence and a Desktop Intelligence Document :
infoObject = (IInfoObject) infoObjects.get(0); String kind = infoObject.getKind(); if (kind.equalsIgnoreCase("Webi")){ // Retrieve the Report Engine for Web Intelligence documents wiRepEngine = (ReportEngine) getReportEngines() .getService(ReportEngines.ReportEngineType.WI_REPORT_ENGINE); }else if (kind.equalsIgnoreCase("FullClient")){ wiRepEngine = (ReportEngine) getReportEngines() .getService(ReportEngines.ReportEngineType.FC_REPORT_ENGINE); } Request qr; Set<Request> listQr; DocumentInstance widoc = wiRepEngine.openDocument(infoObject.getID()); widoc.refresh(); boDataProviders = widoc.getDataProviders() ;
The function openDocument works for WebIntelligence document but nit for deski document.
il return me the following error:
Unable to instantiate ReportEngine
Which function can I use in this case??