Class Reference
IRIS for UNIX 2024.1.2
InterSystems: The power behind what matters   
Documentation  Search
  [USER] >  [Ens] >  [Rule] >  [RuleLog]
Private  Storage   

persistent class Ens.Rule.RuleLog extends %Persistent, %XML.Adaptor

Deprecated; use Ens.Rule.Log. Defines an audit trail for the Rules Engine.
Maintains a history of when rules were invoked and the reason for the returned value.

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
1 15 2 1 2


Summary

Properties
ActivityName EffectiveBeginDateTime EffectiveEndDateTime ErrorMsg
ExecutionId HostClass IsError Reason
ReturnValue RoutineName RuleId RuleName
RuleVersion SessionId TimeExecuted

Methods
%%CLASSNAMELogicalToStorage %%CLASSNAMEStorageToLogical %AddToSaveSet %AddToSyncSet
%BMEBuilt %BuildIndicesAsync %BuildIndicesAsyncResponse %CheckConstraints
%CheckConstraintsForExtent %ClassIsLatestVersion %ClassName %ComposeOid
%ConstructClone %Delete %DeleteExtent %DeleteId
%DispatchClassMethod %DispatchGetModified %DispatchGetProperty %DispatchMethod
%DispatchSetModified %DispatchSetMultidimProperty %DispatchSetProperty %Exists
%ExistsId %Extends %GUID %GUIDSet
%GetLock %GetParameter %GetSwizzleObject %Id
%InsertBatch %IsA %IsModified %IsNull
%KillExtent %KillExtentData %LoadFromMemory %LockExtent
%LockId %New %NormalizeObject %ObjectIsNull
%ObjectModified %Oid %OnBeforeAddToSync %OnDeleteFinally
%OnDetermineClass %OnOpenFinally %OnSaveFinally %Open
%OpenId %OriginalNamespace %PackageName %PhysicalAddress
%PurgeIndices %Reload %RemoveFromSaveSet %ResolveConcurrencyConflict
%RollBack %Save %SaveDirect %SaveIndices
%SerializeObject %SetModified %SortBegin %SortEnd
%SyncObjectIn %SyncTransport %UnlockExtent %UnlockId
%ValidateIndices %ValidateObject %ValidateTable Purge
RuleIdGet XMLDTD XMLExport XMLExportToStream
XMLExportToString XMLNew XMLSchema XMLSchemaNamespace
XMLSchemaType


Parameters

• parameter XMLIGNORENULL = 1;
Ensure that we don't get $C(0) for values that are empty strings

Properties

• property ActivityName as %String(MAXLEN=128,TRUNCATE=1,XMLNAME="activityName",XMLPROJECTION="attribute");
(Optional) The name of the BPL rule activity that invoked the rule.
• property EffectiveBeginDateTime as %String(COLLATION="EXACT",MAXLEN=2000,XMLNAME="effectiveBeginDateTime",XMLPROJECTION="attribute");
The EffectiveBeginDateTime of the rule executed.
• property EffectiveEndDateTime as %String(COLLATION="EXACT",MAXLEN=2000,XMLNAME="effectiveEndDateTime",XMLPROJECTION="attribute");
The EffectiveEndDateTime of the rule executed.
• property ErrorMsg as %String(MAXLEN=1024,TRUNCATE=1,XMLNAME="errorMsg",XMLPROJECTION="attribute");
If the Rules Engine returns an error it is placed here.
• property ExecutionId as %Integer(XMLNAME="executionId",XMLPROJECTION="attribute") [ InitialExpression = $I(^Ens.Rule.RuleLogC("ExecutionId")) ];
Unique id for this rule execution.
• property HostClass as %String(MAXLEN=128,TRUNCATE=1,XMLNAME="host",XMLPROJECTION="attribute");
The class name of the Business Process that invoked the rule.
• property IsError as %Boolean [ InitialExpression = 0 ];
True if this is an error.
• property Reason as %String(MAXLEN=128,TRUNCATE=1,XMLNAME="reason",XMLPROJECTION="attribute");
The reason (e.g, rule name) that the Rules Engine performed its action.
• property ReturnValue as %String(MAXLEN="",XMLNAME="returnValue",XMLPROJECTION="attribute");
The value returned by the Rule Engine for this rule.
• property RoutineName as %String(MAXLEN=255,TRUNCATE=1,XMLNAME="routineName",XMLPROJECTION="attribute");
The name of the routine in the Rule Cache used to execute this rule.
• property RuleId as %String(XMLPROJECTION="none") [ Calculated ];
Object Id of Rule Definition.
• property RuleName as %String(MAXLEN=128,TRUNCATE=1,XMLNAME="ruleName",XMLPROJECTION="attribute") [ Required ];
The name of the Rule Definition that was executed.
• property RuleVersion as %Integer(XMLNAME="ruleVersion",XMLPROJECTION="attribute");
The version number for the Rule Definition.
• property SessionId as %Integer(XMLNAME="sessionId",XMLPROJECTION="attribute");
The id for the session in which the Rule was fired.
• property TimeExecuted as Ens.DataType.UTC(XMLNAME="timeExecuted",XMLPROJECTION="attribute") [ InitialExpression = $$$timeUTC,Required ];
Time that this Rule was executed.

Methods

• classmethod Purge(Output pDeletedCount As %Integer, pDaysToKeep As %Integer = 7, pDummy As %Boolean) as %Status
• method RuleIdGet() as %String
This is a Get accessor method for the RuleId property.

Queries

• query Enumerate()
SQL Query :
SELECT %ID,
SessionId,
ExecutionId,
TimeExecuted,
HostClass,
ActivityName,
RuleName,
EffectiveBeginDateTime,
EffectiveEndDateTime,
RuleVersion,
Reason,
ReturnValue,
IsError,
ErrorMsg,
RuleId,
RoutineName
FROM RuleLog
ORDER BY ExecutionId
Returns the current contents of the Rule Audit Log.

Indices

•index (ID on SessionId,ExecutionId) [IdKey];
IdKey
•index (TimeExecuted on TimeExecuted);


Copyright (c) 2025 by InterSystems Corporation. Cambridge, Massachusetts, U.S.A. All rights reserved. Confidential property of InterSystems Corporation.