55.12 REFRESH_PARTICIPANTS Procedure

This procedure refreshes the participants for this workflow instance.

Syntax

APEX_WORKFLOW.REFRESH_PARTICIPANTS (
    p_instance_id    IN NUMBER );

Parameters

Parameter Description
p_instance_id The Workflow ID.

Example

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