persistent class Ens.Milestone
extends %Persistent
API for Business Process milestones.
This class is readonly and has its storage directly mapped
to the Ens.BPL.Milestone global.
parameter READONLY = 1;
READONLY = 1 means that objects can be created, opened but not saved or deleted.
Tables are projected to SQL as READONLY.
property ContextId
as %String(MAXLEN=128);
Business process context id of milestone.
property LastUpdate
as Ens.DataType.UTC;
Time of last update to this milestone.
property LastValue
as %String(MAXLEN=1000);
Last saved value of milestone.
property SessionId
as %String(MAXLEN=128);
Session id of milestone.
query EnumerateMilestones()
SQL Query
:
SELECT SessionId,ContextId,LastUpdate,LastValue FROM Milestone
Return the set of all current Business Process milestones.
query EnumerateMilestonesForSession(pSessionId As %String = "")
SQL Query
:
SELECT ContextId,LastUpdate,LastValue FROM Milestone
WHERE SessionId = :pSessionId
Return the set of sessions containing milestones.
query EnumerateSessions()
SQL Query
:
SELECT DISTINCT SessionId FROM Milestone
Return the set of sessions containing milestones.
index (IDKEY on SessionId,ContextId) [IdKey];