/
Incoming User Assignments Summary

Incoming User Assignments Summary

Description:Provides a count, by assignment name, of all user assignments created.
Sources:Assignment

It is important that you always include tenantID in your WHERE clause.  Not doing so will result in poor performance.  

WHERE tenantid = 'YOURTENANTIDHERE'

SQL

select
tasklabel as Assignment,
count(*) as Count
from
assignment as a
where
a.tenantid = 'YOURTENANTIDHERE'
and a.assignmentstate = 'Created'
and a.workgroup NOT IN ('System', 'Pending') 
and a.createdatetime=:daterange
group by tasklabel
order by tasklabel

Change Log

DateDescription
7/23/2024New

Related content

Incoming User Assignments
Incoming User Assignments
More like this
SQL Library
Read with this
Assignment Event
Assignment Event
More like this
Dispute Assignments Completed Per Operator Per Hour
Dispute Assignments Completed Per Operator Per Hour
More like this
User Completed Actions
User Completed Actions
More like this
User Dashboard
User Dashboard
More like this