Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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