Is there anywhere in the K2 database or reports that capture when a particular task was allocated to a user? I've found good levels of detail on when a task is redirectred, completed, and released but not when it is set to "Open".
Solved
Capture When a Task is Allocated?
Best answer by mpgibbs
Hello,
You can run something such as follows to see who opened the task and when etc...
SELECT WLS.ProcInstID, A.ActionerName, WLS.AllocDate
FROM Server.WorklistSlot WLS
JOIN Server.Actioner A
ON WLS.ActionerID = A.ID
WHERE WLS.Status = 1;
Regards,
Matt
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.