11-17-2011 06:15 PM
Queue-Task report
Hi - does anyone have SQL to run a report that will show the service, the queue and the tasks for that service? I can get the service and tasks, but not the queue.
11-17-2011 06:15 PM
select b.Name,DEFAULTPERFORMEREXPRESSION FROM DEFSERVICE a,DEFTASK b,DEFPROJECT c
WHERE a.AREAID NOT IN (1,2,3,4,5,20)
AND a.serviceid = 2782
AND a.serviceid = c.OwnerInstID
AND c.OwnerObjectID = 13
AND b.projectID = c.ProjectID
order by a.name , b.childlevel ;
11-17-2011 06:15 PM
Thank you so much Chitra - that worked perfectly!!
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide