46.78 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

Table 46-67 IR_DELETE_REPORT 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;