18.9 DELETE_REPORT Procedure
This procedure deletes saved interactive reports. It deletes a specific saved report in the current logged in workspace and application.
Syntax
APEX_IR.DELETE_REPORT(
    p_report_id IN NUMBER);Parameters
Table 18-9 DELETE_REPORT Procedure Parameters
| Parameter | Description | 
|---|---|
| 
 | Report ID to delete within the current Application Express application. | 
Example
The following example shows how to use the DELETE_REPORT procedure to delete the saved interactive report with ID of 880629800374638220 in the current application. 
                  
BEGIN
    APEX_IR.DELETE_REPORT (
        p_report_id => 880629800374638220);
END;Parent topic: APEX_IR