11.4 ABORT Procedure Signature 2

This procedure aborts a specific execution of an execution Chain.

Syntax

APEX_BACKGROUND_PROCESS.ABORT (
    p_application_id    IN NUMBER DEFAULT wwv_flow.g_flow_id,
    p_execution_id      IN NUMBER )

Parameters

Table 11-2 ABORT 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;