persistent class Ens.Rule.Action
extends %Persistent, %XML.Adaptor
SQL Table Name: RuleAction
Defines an Action associated with a specific Rule within a RuleSet.
Actual Actions are defined by subclasses.
parameter XMLIGNORENULL = 1;
Ensure that we don't get $C(0) for values that are empty strings
property ActionNo
as %Integer(XMLPROJECTION="NONE") [ InitialExpression = $I(^Ens.Rule.RuleC("ActionNo")) ];
relationship Rule
as Ens.Rule.Rule [ Inverse = Actions,Cardinality = parent ];
Parent Rule.
index (ID on ActionNo) [IdKey];
Make sure actions are ordered correctly