55.14 RESUME Procedure

This procedure resumes a Workflow. Only suspended Workflow Instances can be resumed.

Syntax

APEX_WORKFLOW.RESUME (
    p_instance_id            IN NUMBER );

Parameters

Parameter Description
p_instance_id ID of the Workflow.

Example

The following example resumes a Workflow Instance.

BEGIN
    apex_workflow.suspend(
           p_instance_id => 1234);
END;