Activity Chart Checks : (C3085) Sub-types that conflict with enumerated type definition

(C3085) Sub-types that conflict with enumerated type definition

Error In:
Correctness
Description:
One of the following situations:

Values that do not appear in the definition of an enumerated type are used.

Values in the subtype definition are not in the same order as in the definition of the enumerated type.

Values are missing from the subtype definition.

Format:

<subtype name> (sub range of <enumerated-type name>):
<enum-value> - missing in <enumerated-type name>
<enum-value> - missing in <subtype name>
<enum-value> - incorrect ordinal in <subtype name>

Example:

WORKING_DAYS (sub range of DAYS)
MONDAY - missing in DAYS
TUE - missing in WORKING_DAYS
WED - incorrect ordinal in WORKING_DAYS

Erroneous Elements:
User-defined types