Previous |
Next |
This procedure clears report settings.
Syntax
APEX_UTIL.IR_CLEAR( p_page_id IN NUMBER, p_report_alias IN VARCHAR2 DEFAULT NULL);
Parameters
Table: IR_CLEAR Parameters describes the parameters available in IR_CLEAR
procedure.
IR_CLEAR Parameters
Parameter | Description |
---|---|
|
Page of the current APEX application that contains an interactive report. |
|
Identifies the saved report alias within the current application page. To clear a Primary report, |
Example
The following example shows how to use the IR_CLEAR procedure to clear Interactive report settings with alias of '8101021' in page 1 of the current application.
BEGIN APEX_UTIL.IR_CLEAR( p_page_id => 1, p_report_alias => '8101021' ); END;