Home         |        Forums         |        Portals          |           Login               |     Register              
 
Go Back   VoIP / PBX Info Forum for Avaya / Nortel, Cisco, ShoreTel, Panasonic and other manufactuers Tech Tips Community > PBX / IP PBX FORUMS > NORTEL > Contact Center Symposium and ACD
   SEARCH  
     
User Name Password      
Save ?
Contact Center Symposium and ACD Nortel's Symposium Call Center Server, including Web Client, Symposium Agent and TAPI, also ACD, Meridian Max, CCR, IVR Application Discussion and Support here.

Tags: , ,


Avaya Compliant Solutions   Nortel Compatible Products    Cisco Compliant Solutions   Free Call Accounting Quotes

Reply
 
LinkBack Thread Tools Display Modes
Old April 11th, 2006   #1 (permalink)
Senior Member
 
TomasSouth's Avatar
TomasSouth has no status.

Activity Longevity
1/20 20/20
Today Posts
0/0 ssssss344
Rep Power: 8TomasSouth is on a distinguished road
Send a message via MSN to TomasSouth
SECC Abandoned Calls

In SECC, is there a way to get a list of CLID of those calls that were abandoned? Or CLID of all calls that entered specific Skillset?
TomasSouth is offline   sendpm.gif Reply With Quote
Old April 11th, 2006   #2 (permalink)
Moderator
 
John_In_Dakota's Avatar
John_In_Dakota is in need of a long nap.

Activity Longevity
6/20 20/20
Today Posts
0/0 sssss6256
Location: 1069.7 miles from Tiverton, Ontario (CANADA)
Rep Power: 14John_In_Dakota will become famous soon enough
Gender:
Country:
Send a message via AIM to John_In_Dakota Send a message via MSN to John_In_Dakota Send a message via Yahoo to John_In_Dakota
About the only way I know would to run a Call by Call report for each hour of the day. There will be a lot of data but if you put that report into an Excel spread sheet you can then search for "REASON: ABANDONED
__________________
Dare To Be The Very Best!
John_In_Dakota is offline   sendpm.gif Reply With Quote
Old April 11th, 2006   #3 (permalink)
Admin
 
Chas2002's Avatar
Chas2002 is scared by papa-bear\'s "not work safe"

Activity Longevity
0/20 19/20
Today Posts
0/0 sssss1681
Location: Gulf Coast
Rep Power: 5Chas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond repute
Country:
Re:

Can you look at your Call Detail Records and compare to the Agent Set POS ID?

Haven't tested but I suspect that each Agent Pos ID will show the calls terminated (not the CDN).

Then compare that to calls delivered to the CDN -- Thus if a call was presented to the CDN but doesn't match with a call answered by a Pos ID then it's abandoned?

Chas2002
__________________
Free Preview of my fictional book: Chaos Theorem .:-:. Employment: Find a new job on pbxjobs.com

Best Video Jukebox on the net (mini-flash widget) | and | Do you want to store your MP3 files? visit: Musecast.com

Why not start a blog http://www.pbxinfo.com/blogs/ - it's 110% free.
Chas2002 is offline   sendpm.gif Reply With Quote
Old April 12th, 2006   #4 (permalink)
Junior Member

Activity Longevity
0/20 20/20
Today Posts
0/0 sssssss29
Rep Power: 8RICK007 is on a distinguished road
If you are familiar with the Data Dictionary and SQL, run this query against your call by call view. Remember to change the name of the view to reflect the date you are looking for and frequency. This will give you abandoned call data.


Select Timestamp,CallID, EventData, CallEventName

from dbo.eCallByCallStat20060408

WHERE CallID IN (Select CallID from dbo.eCallByCallStat20060408
WHERE CallEvent = 41)

ORDER BY CallID
RICK007 is offline   sendpm.gif Reply With Quote
Old April 12th, 2006   #5 (permalink)
Senior Member
 
Rachelle's Avatar
Rachelle is curious

Activity Longevity
1/20 20/20
Today Posts
0/0 sssss3503
Location: Lou, KY
Rep Power: 11Rachelle is on a distinguished road
Country:
Will someone with Symp try this and post your results??? This is one of those questions that should be saved over in to the FAQ section. This would be a great 'best practices' type of procedure to put together.


rlc
__________________
"This participation is personal and does not represent the United States Census Bureau". They make me say this.
Rachelle is offline   sendpm.gif Reply With Quote
Old April 12th, 2006   #6 (permalink)
Junior Member

Activity Longevity
0/20 20/20
Today Posts
0/0 sssssss29
Rep Power: 8RICK007 is on a distinguished road
This is what the query will provide. This only 1 call and I have changed the CLID on it.

Sorry i dont know how to attach a file. Copy and paste the text below and save it as a html file and then open it in IE.




<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Author" content="Telus (license 1)">
<style type="text/css">
BODY {
font-family: MS Sans Serif;
font-size: 8pt ;
text-align: Left;
background-color: #FFFFFF;
color: #0;
}
TH {
font-family: MS Sans Serif;
font-size: 10pt ;
text-align: Center;
background-color: #8282FF;
color: #FFFFFF;
}
.oddrows {
font-family: MS Sans Serif;
font-size: 8pt ;
text-align: Left;
background-color: #FFFFFF;
color: #0;
}
.evenrows {
font-family: MS Sans Serif;
font-size: 8pt ;
text-align: Left;
background-color: #FFFFBF;
color: #0;
}

</style>
<title>dbo.eCallByCallStat20060408</title>
</head>
<body>
<p><b><font size=+2>dbo.eCallByCallStat20060408</font></b></p>
<table border=2 cellpadding=2 cellspacing=1>
<tr>
<th>Timestamp</th>
<th>CallID</th>
<th>EventData</th>
<th>CallEventName</th>
</tr>
<tr>
<td class=oddrows>2006-04-08 21:54:55</td>
<td class=oddrows>54132858</td>
<td class=oddrows>&nbsp;</td>
<td class=oddrows>Local Call Abandoned</td>
</tr>
<tr>
<td class=evenrows>2006-04-08 21:54:50</td>
<td class=evenrows>54132858</td>
<td class=evenrows>CLID: 1234567890</td>
<td class=evenrows>Local Call Arrived</td>
</tr>
<tr>
<td class=oddrows>2006-04-08 21:54:50</td>
<td class=oddrows>54132858</td>
<td class=oddrows>&nbsp;</td>
<td class=oddrows>Handed Over to Master Application</td>
</tr>
<tr>
<td class=evenrows>2006-04-08 21:54:50</td>
<td class=evenrows>54132858</td>
<td class=evenrows>&nbsp;</td>
<td class=evenrows>Application Interflowed</td>
</tr>
<tr>
<td class=oddrows>2006-04-08 21:54:50</td>
<td class=oddrows>54132858</td>
<td class=oddrows>&nbsp;</td>
<td class=oddrows>Task Flow Handed Off</td>
</tr>
<tr>
<td class=evenrows>2006-04-08 21:54:50</td>
<td class=evenrows>54132858</td>
<td class=evenrows>&nbsp;</td>
<td class=evenrows>Give Ringback</td>
</tr>

</table>
</body>
</html>

Last edited by RICK007; April 12th, 2006 at 05:04 PM.
RICK007 is offline   sendpm.gif Reply With Quote
Old April 13th, 2006   #7 (permalink)
Admin
 
Chas2002's Avatar
Chas2002 is scared by papa-bear\'s "not work safe"

Activity Longevity
0/20 19/20
Today Posts
0/0 sssss1681
Location: Gulf Coast
Rep Power: 5Chas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond repute
Country:
Re:

Wow - I like this solution.

I don't have access to Symposium to test but I'm familiar with SQL.

Is the Data Dictionary a utility in Symposium?

Chas2002
__________________
Free Preview of my fictional book: Chaos Theorem .:-:. Employment: Find a new job on pbxjobs.com

Best Video Jukebox on the net (mini-flash widget) | and | Do you want to store your MP3 files? visit: Musecast.com

Why not start a blog http://www.pbxinfo.com/blog.php - it's 110% free.
Chas2002 is offline   sendpm.gif Reply With Quote
Old April 13th, 2006   #8 (permalink)
Junior Member

Activity Longevity
0/20 20/20
Today Posts
0/0 sssssss29
Rep Power: 8RICK007 is on a distinguished road
The Data Dictionary is on the documentation CD. It tells you what info is available in each view from the database. If you make your own Crystal Reports it is essential.

You will still need to setup an ODBC connection to the Symposium Database or use an existing if you have the classic client installed.

Last edited by RICK007; April 13th, 2006 at 10:44 AM.
RICK007 is offline   sendpm.gif Reply With Quote
Old April 13th, 2006   #9 (permalink)
Admin
 
Chas2002's Avatar
Chas2002 is scared by papa-bear\'s "not work safe"

Activity Longevity
0/20 19/20
Today Posts
0/0 sssss1681
Location: Gulf Coast
Rep Power: 5Chas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond reputeChas2002 has a reputation beyond repute
Country:
Re:

Great - Thanks for the input...
__________________
Free Preview of my fictional book: Chaos Theorem .:-:. Employment: Find a new job on pbxjobs.com

Best Video Jukebox on the net (mini-flash widget) | and | Do you want to store your MP3 files? visit: Musecast.com

Why not start a blog http://www.pbxinfo.com/blog.php - it's 110% free.
Chas2002 is offline   sendpm.gif Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
How to check External Transfer? dominick Meridian Systems 11 September 16th, 2009 11:43 AM
Dropping Certain Incoming Calls dzembek Meridian Systems 2 November 1st, 2005 12:06 PM
Terminated & Abandoned Calls Before The Queue Opens msturnerjr Contact Center Symposium and ACD 3 April 15th, 2005 07:02 PM
2 second Abandoned Calls - Causes??? Rachelle Contact Center Symposium and ACD 4 April 7th, 2005 03:10 PM
CHage UNR for all sets Meridian Systems 7 March 2nd, 2004 01:59 PM


All times are GMT -4. The time now is 12:04 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright (c) www.pbxinfo.com - PBX Info | Free PBX, PABX, IP PBX, VOIP and Telephone Information Resource Forum - Avaya / Nortel, Cisco, Panasonic, Mitel, ShoreTel, more...