This procedure deletes Interactive subscriptions.
Syntax
APEX_UTIL.IR_DELETE_SUBSCRIPTION(
p_subscription_id IN NUMBER);
Parameters
Table 21-61 describes the parameters available in IR_DELETE_SUBSCRIPTION procedure.
Table 21-62 IR_DELETE_SUBSCRIPTION Parameters
| Parameter | Description |
|---|---|
|
|
Subscription ID to delete within the current workspace. |
Example
The following example shows how to use the IR_DELETE_SUBSCRIPTION procedure to delete the subscription with ID of ' 880629800374638220 ' in the current workspace.
BEGIN
APEX_UTIL.IR_DELETE_SUBSCRIPTION(
p_subscription_id => '880629800374638220');
END;