Incoming User Assignments
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 * from assignment as a where a.tenantid = 'YOURTENANTIDHERE' and a.assignmentstate = 'Created' and a.workgroup NOT IN ('System', 'Pending') and a.createdatetime=:daterange order by a.createdatetime desc
Change Log
Date | Description |
---|---|
7/23/2024 | Added create date filer |