61.17 RETRY Procedure
This procedure retries a Workflow.
Syntax
APEX_WORKFLOW.RETRY (
p_instance_id IN NUMBER );
Parameters
Parameter | Description |
---|---|
p_instance_id |
ID of the Workflow. |
Example
The following example retries a faulted Workflow Instance. The activity at which the fault was encountered is the point where the API retries execution.
BEGIN
apex_workflow.retry(
p_instance_id => 1234);
END;
Parent topic: APEX_WORKFLOW