Accessing reports in OBIEE from a Java Program

Faisal Memon picture Faisal Memon · Apr 29, 2012 · Viewed 14k times · Source

I am developing an Java application using Netbeans which will fetch reports from the BI server on OBIEE 10G and display it to the client using the Java application. Can anyone suggest me appropriate steps to do this and also how to begin with it.

Answer

gerardnico picture gerardnico · Apr 30, 2012

First of all, you will fetch the report from Presentation Services and not from BI server. BI server is a database with only SELECT statement whereas Presentation Service uses this SELECT to create and format reports.

To integrate report from BI Presentation service within a other application, you can use:

The links goes to the same documentation (Integrator's Guide). This is written for 11g but it will also works in 10g.

Cheers Nico