Report Design
 Crystal Reports Forum : Crystal Reports 9 through 2020 : Report Design
Message Icon Topic: Assignments resolved by one individual Post Reply Post New Topic
<< Prev Page  of 3
Author Message
nmercure
Newbie
Newbie
Avatar

Joined: 25 Sep 2007
Location: United States
Online Status: Offline
Posts: 12
Quote nmercure Replybullet Posted: 14 Oct 2007 at 2:06pm

ABSOLUTELY no appologies needed. I can't thank you enough.

Nancy
IP IP Logged
jkwrpc
Senior Member
Senior Member


Joined: 19 Jun 2007
Location: United States
Online Status: Offline
Posts: 432
Quote jkwrpc Replybullet Posted: 15 Oct 2007 at 6:25pm
Nancy:
 
I have broken out your SQL Query into two statements. These will will go into separate Command Objects then be linked (joined) in the CR database expert.
The logic is that the first command object counts the callid to see if it is assigned to more that one person. If returns data only if it is assigned to 1 person and is closed. The second command object returns the details for the specific call id . If all is working correctly it should return information on those calls handled and cloed by one person.
 
Command Object 1
Select asgnmnt.callid, count(asgnmnt.callid) as countId
from asgnmnt
Left outer Join CallLog on asgnmnt.callid = calllog.callid
where callLog.callstatus = 'closed'
Group by asgnmnt.callid
Having count(asgnmnt.callid) = 1
 
Command Object 2
SELECT
CallLog.CallID as CallLogId,
CallLog.CloseDate,
CallLog.RecvdDate,
CallLog.CallType,
CallLog.CallStatus,
CallLog.Priority,
Asgnmnt.DateResolv
FROM CallLog
LEFT OUTER JOIN Asgnmnt
ON Asgnmnt.CallID = CallLog.CallID
where calllog.callstatus = 'closed'
You will need to link the two in the Database expert (Linking tab).
Likne the asgnmnt.callid in cmd Object1 to calllogId in Cmd Object 2
Since I dont have enough data you may need to try different joins.
 
This is about as much as I do for you at this point. I hope it helps.
 
Regards,
 
John W.
IP IP Logged
<< Prev Page  of 3
Post Reply Post New Topic
Printable version Printable version

Forum Jump
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot delete your posts in this forum
You cannot edit your posts in this forum
You cannot create polls in this forum
You cannot vote in polls in this forum



This page was generated in 0.031 seconds.