Oracle® Business Intelligence Web Services Guide > Description of Services in Oracle BI Web Services > HtmlViewService Service >
addReportToPage() Method
Use this method to add results to an HTML page. Signature
void addReportToPage(String pageID, String reportID, ReportRef report, String reportViewName, ReportParams reportParams, ReportHTMLOptions options, String sessionID);
|
|
String pageID |
Specifies a character string page ID returned by the startPage() method. For information about the startPage () method, read startPage() Method. |
String reportID |
Specifies a character string that identifies the report containing the results to add to the page. It should be used to reference this report in subsequent method invocations; for example, corresponding user interface elements generated by the Oracle BI Web Services server would reference the same ID. |
ReportRef report |
Specifies the report definition, supplied in the ReportRef structure. For more information, read ReportRef Structure. |
String reportViewName |
Specifies the view to display. If this parameter is null, the report's default view is used. The view name should match the one used to identify the view in the report XML definition. |
ReportParams reportParams |
Optional. Specifies the filters or variables to apply to the report before execution, supplied in the ReportParams common structure. For more information, read Description of Services in Oracle BI Web Services. |
ReportHTMLOptions options |
Optional. Specifies the display options to apply to the report after execution, supplied in the ReportHTMLOptions structure. For more information, read QueryResults Structure. |
String sessionID |
Specifies the session ID, which is usually returned by the logon method. If the SOAP client engine can handle HTTP cookies, you can omit the session ID or set it to null. |
|