So I'm trying to combine worklist items with SmartObjects. To do so I'm looking at `server.WorklistHeader` table. Am I right thinking that this table contains all active and only active worklist items?
This table contains a very nice column `https://our-k2.com/Runtime/Runtime/Form/Form+Name/?SerialNo=48_80&_state=State` that I will definately use. What I'm trying to figure out is this part of the url `SerialNo=48_80`.
48 - obviously is ProcInstID.
80 - seems to be ActInstDestID, according to column value
To find a current assignee i'm looking at table `ServerLog.ActInstDest` where
- ServerLog.ActInstDest.ID = server.WorklistHeader.ActInstDestID
- ServerLog.ActInstDest.ProcInstID = server.WorklistHeader.ProcInstID
Is this correct?