59.84 IR_DELETE_REPORT Procedure (Deprecated)
Note:
Use of this procedure is not recommended. This procedure has been replaced by the procedure in APEX_IR.This procedure deletes saved interactive reports. It deletes all saved reports except the Primary Default report.
Syntax
APEX_UTIL.IR_DELETE_REPORT (
p_report_id IN NUMBER );
Parameters
Parameter | Description |
---|---|
p_report_id |
Report ID to delete within the current Oracle APEX application. |
Example
The following example shows how to use the IR_DELETE_REPORT
procedure to delete the saved Interactive report with ID of '880629800374638220' in the current application.
BEGIN
APEX_UTIL.IR_DELETE_REPORT(
p_report_id => '880629800374638220');
END;
Parent topic: APEX_UTIL