persistent class EnsLib.Workflow.Worklist
extends %Persistent
Represents a worklist item associated with a User within a Workflow application.
property Age
as %String [ Calculated ];
Calculated Age of this item.
property IsNew
as %Boolean [ InitialExpression = 1 ];
Has the user seen this item yet?
property Role
as RoleDefinition [ SqlFieldName = RoleName,Required ];
The Role this item is associated with.
property Task
as EnsLib.Workflow.TaskResponse [ Required ];
Link to Task (TaskResponse) that created this item.
property TimeCreated
as Ens.DataType.UTC [ InitialExpression = $$$timeUTC ];
The timestamp when this Item was placed into the worklist.
property User
as UserDefinition [ SqlFieldName = UserName,Required ];
The User this item is associated with.
method AgeGet()
as %String
Overridden accessor method for the calculated Age property.
classmethod CurrentAge(ts As Ens.DataType.UTC = "")
as %String
This class method calculate the current age of this item.
index (ID on Task,User) [IdKey];
Identity Index
index (UserIdx on User:Exact);
User cross-index