55.13 REMOVE_DEVELOPMENT_INSTANCES Procedure

This procedure removes workflow instances created in "DEV" mode. This API can be used by a developer to remove any workflow instances that have been started from App Builder in DEV mode.

Syntax

APEX_WORKFLOW.REMOVE_DEVELOPMENT_INSTANCES (
    p_application_id         IN NUMBER   DEFAULT wwv_flow.g_flow_id,
    p_static_id              IN VARCHAR2 DEFAULT NULL );

Parameters

Parameter Description
p_application_id The application ID.
p_static_id Static ID of the workflow. If omitted, removes all development workflow instances of the application.

Example

BEGIN
  apex_workflow.remove_development_instances(
    p_application_id => 100);
END;