This seems to work fine and I should be able to make a few minor adjustments to pull additional fields.
Thank you!
Dave BeliveauSanmina-SCI CorporationeBusiness - Team ConnexSalem, NHph. (603)896-2797fax (603)896-2022
-----Original Message-----From: eLink Discussion: Livelink LiveReports Discussion[mailto:livereportsdiscussion@elinkkc.opentext.com]Sent: Monday, July 01, 2002 10:54 AMTo: eLink RecipientSubject: Report for specific task list
Report for specific task listPosted by RGSINC01Admin on 07/01/2002 10:47 AM
We sometimes use a report for a specific task list or group of task lists. This was written for SQL Server 2000, it looks quite a bit different in Oracle. The report pulls active tasks only, completed or cancelled tasks are selected out.
select DTree.*, KUAF.Name as kuafname, (CASE DTree.status When 0 Then 'Pending' When 1 Then 'In Process' When 2 Then 'Issue' When 3 Then 'On Hold' Else 'UnKnown' End) as mystatus from DTree, KUAF where SubType=206 and KUAF.ID=DTree.Assignedto and %1 and((DTree.Status=0) or (DTree.Status=1) or (DTree.Status=2) or (DTree.Status=3)) and (DTree.OwnerID=23932) order by DTree.Priority DESC, DTree.DateDue
%1 is filter permissions, format is Livereport.
Field Column Titlekuafname Assigned Tomystatus StatusDateAssigned Date AssignedDateDue Date Due
[To reply to this thread, use your normal e-mail reply function.]
============================================================
Topic: Task list reportshttps://knowledge.opentext.com/knowledge/livelink.exe?func=ll&objId=2772015&objAction=view
Discussion: Livelink LiveReports Discussionhttps://knowledge.opentext.com/knowledge/livelink.exe?func=ll&objId=2249677&objAction=view
Livelink Server:https://knowledge.opentext.com/knowledge/livelink.exe
Is there a way to capture the milestone data that is applied in the task list?
Jessica