13.3 ABORT Procedure Signature 1 (Deprecated)
Note:
This API is deprecated and will be removed in a future release.
Use APEX_BACKGROUND_PROCESS.TERMINATE instead.
This procedure aborts all executions of an execution chain.
Syntax
APEX_BACKGROUND_PROCESS.ABORT (
p_application_id IN NUMBER DEFAULT apex_application.g_flow_id,
p_process_id IN NUMBER )
Parameters
Parameter | Description |
---|---|
p_application_id |
ID of the application containing the process. |
p_process_id |
ID of the execution chain to abort executions for. |
Example
The following example aborts all executions for process 9023498034890234890
.
BEGIN
apex_background_process.abort(
p_application_id => 100,
p_process_id => 9023498034890234890 );
END;
Parent topic: APEX_BACKGROUND_PROCESS