| Oracle® Fusion Middleware Publishing Reports to the Web with Oracle Reports Services 11g Release 1 (11.1.1) B32121-01 |
|
![]() Previous |
![]() Next |
The SQL script that rwconverter generates for you to batch register reports in Oracle Fusion Middleware consists mainly of calls to the RWWWVREG.REGISTER_REPORT function. The syntax of RWWWVREG.REGISTER_REPORT is as follows:
Function Rwwwvreg.register_report(
p_owner varchar2,
p_name varchar2,
p_servers varchar2,
p_filename varchar2,
p_description varchar2,
p_privileges varchar2,
p_availability varchar2,
p_types varchar2,
p_formats varchar2,
p_printers varchar2,
p_pdformTemplate varchar2,
p_parameters varchar2,
p_trigger varchar2)
return number;
-- =0 : succeeded;
-- !=0 : failed;
The table below describes each of the parameters taken by RWWWVREG.REGISTER_REPORT.
Table C-1 RWWWVREG.REGISTER_REPORT parameters
| Parameter | Description |
|---|---|
|
|
Is the DB Provider name. The default is the current Oracle Fusion Middleware DB Provider that you are connected to when you start the SQL*PLUS script. For example:
|
|
|
Is the name used to identify the report in Oracle Portal.
For example:
|
|
|
Is the names of the Reports Servers on which the report definition files defined in the
For example:
Note: The Reports Servers you list for |
|
|
Is the name of the report definition file that is being registered.
For example:
|
|
|
Is a description of the report.
For example:
|
|
|
Is the users or roles given privileges to run the report definition file defined in
For example:
|
|
|
Is the name of the availability calendar that determines when the report definition file defined in the
For example:
Note: The availability calendar must already exist in Oracle Portal. For more information on creating an availability calendar, see Chapter 15, "Deploying Reports in Oracle Portal". |
|
|
Is the destination types to which the report definition file defined in the
For example:
|
|
|
The destination formats to which the report definition file defined in the
For example:
Note: If the destination format for the report is |
|
|
The printers to which the report definition file defined in the
For example:
Note: The printers you list for |
|
|
Is the parameter form template that determines the page style of the Runtime Parameter Form.
For example:
|
|
|
Is the user and system parameters' default, high, and low values, or list of values name. Note: The
The default corresponds to the value set in the Runtime Parameter Form for the specified parameter. For example:
where:
|
|
|
Is the validation trigger written in PL/SQL that returns a boolean statement (for example, true (succeeded) or false (failed)).
For example:
|