Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

All open tasks for a specified user

Code Block
languagesql
SELECT
   ident.LASTNAME AS "Lastname",
   ident.FIRSTNAME AS "Firstsname",
   ident.IDENTITYNAME AS "Username",
   task.TASKNAME AS "Task",
   inst.INSTANCENAME AS "Instance name",
   inst.DEFINITIONNAME AS "Processname"
FROM view_activity act, view_task task, view_identity ident, view_instance inst
WHERE act.ID = task.ACTIVITYID
   AND task.ACTORID = ident.ID
   AND act.ACTIVITYEND IS NULL
   AND task.TASKEND IS NULL
   AND inst.ID = act.INSTANCEID
   AND inst.ISARCHIV = '0'
   AND inst.INSTANCEEND IS NULL
   AND ident.FIRSTNAME = '<specific_user_firstname>'
   AND ident.LASTNAME = '<specific_user_lastname>'

Number of created, completed, and open tasks for each process definition

Code Block
languagesql
 SELECT
   ident.lastName AS "Lastname",
   ident.firstName AS "Firstsname",
   ident.identityName AS "Username",
   task.taskName AS "Task",
   inst.instanceName AS "Instance name",
   inst.definitionName AS "Processname"
FROM view_activity act, view_task task, view_identity ident, view_instance inst
WHERE act.id = task.activityId
   AND task.actorId = ident.ID
   AND act.activityEnd IS NULL
   AND task.taskEnd IS NULL
   AND inst.id = act.instanceId
   AND inst.isArchiv = '0'
   AND inst.instanceEnd IS NULL
   AND ident.firstName = '<specific_user_firstname>'
   AND ident.lastName = '<specific_user_lastname>'

...

Average, minimum and maximum cycle time of all activities of a specific process definition (in h) per month

...