Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "BIRT Report Engine API"

(BIRT Report Engine API Examples)
(BIRT Report Engine API Examples)
Line 1: Line 1:
 +
 
==BIRT Report Engine API Examples==
 
==BIRT Report Engine API Examples==
 
Several examples of using the RE API are presented below.
 
Several examples of using the RE API are presented below.
 +
Please read the [http://www.eclipse.org/birt/phoenix/deploy/reportEngineAPI.php Report Engine API]
 +
page to understand how the API works.
 +
 
Add comments at the end of the example.
 
Add comments at the end of the example.
  
* Simple Execute
+
----
* Separate Run and Render Task
+
 
* Data Extract Task
+
* [[Simple Execute]] - Simple RunAndRender Task Example
* Servlet Example
+
* [[Separate Run and Render]] - This example shows a running and then rendering the report.  It also illustrates getting the TOC from a rptdocument.
* RCP Example
+
* [[Data Extract]] - Data Extract Task, used on a rptdocument.
 +
* [[Parameter Details]] - This example displays parameter information retrieved from a report design.
 +
* [[Servlet Example]] - This example demonstrate how to deploy the BIRT Engine within a servlet.
 +
* [[RCP Example]] - An example of deploying the BIRT Viewer to an RCP application

Revision as of 22:36, 18 July 2006

BIRT Report Engine API Examples

Several examples of using the RE API are presented below. Please read the Report Engine API page to understand how the API works.

Add comments at the end of the example.


  • Simple Execute - Simple RunAndRender Task Example
  • Separate Run and Render - This example shows a running and then rendering the report. It also illustrates getting the TOC from a rptdocument.
  • Data Extract - Data Extract Task, used on a rptdocument.
  • Parameter Details - This example displays parameter information retrieved from a report design.
  • Servlet Example - This example demonstrate how to deploy the BIRT Engine within a servlet.
  • RCP Example - An example of deploying the BIRT Viewer to an RCP application

Back to the top