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