![]() | |
| |||||||||||||||
| |||||||||||||||
| 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: abandoned, calls, secc |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #2 (permalink) | ||||||||
| Moderator ![]() John_In_Dakota is in need of a long nap.
Location: 1069.7 miles from Tiverton, Ontario (CANADA) Rep Power: 14 ![]() | 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! | ||||||||
| | |
| | #3 (permalink) | ||||||||
| Admin ![]() Chas2002 is scared by papa-bear\'s "not work safe"
Location: Gulf Coast Rep Power: 5 ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | 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. | ||||||||
| | |
| | #4 (permalink) | ||||||||
| Junior Member ![]()
Rep Power: 8 ![]() | 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 | ||||||||
| | |
| | #5 (permalink) | ||||||||
| Senior Member ![]() Rachelle is curious
Location: Lou, KY Rep Power: 11 ![]() | 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. | ||||||||
| | |
| | #6 (permalink) | ||||||||
| Junior Member ![]()
Rep Power: 8 ![]() | 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> </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> </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> </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> </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> </td> <td class=evenrows>Give Ringback</td> </tr> </table> </body> </html> Last edited by RICK007; April 12th, 2006 at 05:04 PM. | ||||||||
| | |
| | #7 (permalink) | ||||||||
| Admin ![]() Chas2002 is scared by papa-bear\'s "not work safe"
Location: Gulf Coast Rep Power: 5 ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | 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. | ||||||||
| | |
| | #8 (permalink) | ||||||||
| Junior Member ![]()
Rep Power: 8 ![]() | 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. | ||||||||
| | |
| | #9 (permalink) | ||||||||
| Admin ![]() Chas2002 is scared by papa-bear\'s "not work safe"
Location: Gulf Coast Rep Power: 5 ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | 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. | ||||||||
| | |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
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 | |