DROP ENUMERATION
Synopsis
DROP ENUMERATION module.name
Description
DROP ENUMERATION removes an enumeration type from the project. Any entity attributes that reference the enumeration as their type (via Enumeration(Module.EnumName)) will become invalid after the enumeration is dropped.
Use SHOW IMPACT OF Module.EnumName to check which entities and attributes reference the enumeration before dropping it.
Parameters
- module.name
- The qualified name of the enumeration to remove, in the form
Module.EnumerationName.
Examples
Drop an enumeration
DROP ENUMERATION Sales.OrderStatus;
Drop after checking references
SHOW IMPACT OF Sales.OldStatus;
DROP ENUMERATION Sales.OldStatus;