Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 603 Bytes

File metadata and controls

28 lines (17 loc) · 603 Bytes

DROP WORKFLOW

Synopsis

DROP WORKFLOW module.Name

Description

Removes a workflow from the project. The workflow is identified by its qualified name. If the workflow does not exist, an error is returned.

Any references to the dropped workflow (e.g., CALL WORKFLOW activities in other workflows, or navigation entries) will become broken and should be updated or removed.

Parameters

module.Name : The qualified name of the workflow to drop (Module.WorkflowName).

Examples

DROP WORKFLOW HR.ApprovalFlow;

See Also

CREATE WORKFLOW