DROP MICROFLOW / NANOFLOW
Synopsis
DROP MICROFLOW module.Name
DROP NANOFLOW module.Name
Description
Removes a microflow or nanoflow from the project. The microflow or nanoflow must exist; otherwise an error is raised.
Dropping a microflow or nanoflow does not automatically update references to it from other microflows, pages, navigation, or security rules. Use SHOW IMPACT OF module.Name before dropping to identify all references that will break.
Parameters
module.Name- The qualified name of the microflow or nanoflow to drop (
Module.MicroflowNameorModule.NanoflowName).
Examples
Drop a microflow:
DROP MICROFLOW Sales.ACT_CreateOrder;
Drop a nanoflow:
DROP NANOFLOW Sales.NAV_ValidateOrder;
Check impact before dropping:
-- See what references this microflow
SHOW IMPACT OF Sales.ACT_CreateOrder;
-- Then drop if safe
DROP MICROFLOW Sales.ACT_CreateOrder;