Route Calls based on first 2 digits of customer Ref#

Hi,
I just want some help with an IVR script I am preparing.
The idea is to route calls to a different ICM script depending on the Ref# entered by the customer.   Reference numbers are currently 11 digits long (I used Get Digit String to gather the Ref#).
- For References starting by 10, send to X script
- For References starting by 11 to 19, send to Y script
- For References starting by 2, send to Z script
1) What is the best way of identifying and routing the calls to the specified target as written above?. 
2) Are there any good practices for these sort of tasks?
3) is there an specific functions I can use.
Following are the details of my site:
- Cisco CRS 4.5
- Cisco ICM 7.1
Thanks very much for your support
I am not really an UCCE developer, But I intend to learn as mich as I can
Regards

My personal choice is to put all the decision making in ICM, mostly because there's usually just one ICM script and multiple IVRs which need to be updated in order to make a change.  That being said, here's a high level on how to do it.  In the IVR you collect your reference number and pass it to ICM as an enterprice variable, lets say Peripheral Variable 1.  In ICM you have an IF node which uses the following function if(left(PV1,2)="10", this looks at the two left most variables and checks if it is 10 or not.  If it's 10 you can send it to one ICM script if it's not 10 then you have another IF node which checks if it's something else.
david

Similar Messages

  • Route calls based on extensions

    Hi guys
    First of all, I not have a good Englis so I hope you undertand me.
    I would like to know if there is a way to route calls based on the caller id. This is, for instance, I have extensions 5xxx and 88xx and now they are going trough E1 0/0/1, I want to move this, and only this extension go out to pstn through teh E1 0/0/0. It is possible to do someting like this, in such case, how?
    Best Regards

    Hi.
    You can also use the search function for your query because this topic has been touched many times here
    Eg. Use caller ID route based as search keyword  and you'll find the solution
    HTH
    Regards
    Carlo
    Please rate all helpful posts
    "The more you help the more you learn"

  • Route call based on source IP address

    Hello Guys,
    Is there a way to route calls based on source IP address?
    I want to redirect calls to specific queues based on the ip of the phone who's starting it.
    Any ideas?
    Thanks in advance.
    Filipe Leite                  

    Hi Filipe
    I'm assuming here that you are using CallManager rather than CME?
    One option might be to use the 'device mobility' feature to assign a specific CSS to devices based on their IP subnet. That CSS could have the appropriate partitions to route to a seperate trigger that directs calls to a separate CSQ.
    Of course, whether you can do this depends on whether it would be appropriate to override the device CSS in this way.
    Aaron

  • How to Route Calls based on priority

    Hi,
    We have ICM Version 7.2.5 running on our contact center setup along with CVP 7.0. Here we have some scenario as required by the customer:
    For Ex.
    We have two differnt skill group namely Custmoer care and Technical Support. We are getting call1 for cust care, call2 for cust care ,call3 for tec support and call4 cust care.In this case we need to serve call4 for before call3 were we have differnt scripts running for each skill group.
    Kindly suggest your recommendations on the above and guide me to take it further.
    Regards,
    Sivakumar

    You can lower the priority of calls in queue either by editing the settings of the queue node or placing a priority node after you queue the call. In your case you would lower the priority of calls in your tech support script. Default priority is 5, and lower numbers correspond to higher priorities, so you would change your tech support priority to 6 for example. Keep in mind if you lower the priority, those calls will always go to the back of the line behind higher priority calls. Careful you don't squeeze these callers out completely.

  • Route call base on where call came from

    Would like to route calls based on the location they are calling from. Have three remote sites in same cluster. Would like to route calls from A & B to ACD server at remote site A, via A's gateway. A has a tie line trunk from gateway to ACD. Calls from C to go to external number via C's gateway. Have previously setup a route pattern for the internal XXXXX ext and all calls from A, B, and C went to ACD. But would like to route calls from C to external number.

    Well, if currently xxxxx is a route pattern that is in the internal partition and points at the gateway at site A, I would put it into a new pt called 'acd' or something, and then make another xxxxx in another new pt 'gwyC', and adjust the CSS for devices at each location so that A&B have the 'acd' pt and C has the 'gwyc' pt, and everyone can still have internal pt and call each other without any confusion.
    Mary Beth

  • Route calls to specific number based on Date and Time

    Hi,
    UCCX 8.5.1.11001-22
    I am trying to create a script that will route calls to a specific number after-hours.  The only catch is the number changes every week and rotates among 4 or 5 people.  I have seen several scripts and xml documents up that give me a good start but I just cant seem to figure out the process with the xml document and call flow of this one.  I do realize this is basically a programing question but if you could get me headed in the right direction it would help.
    I am no stranger to UCCX scripting but a novice to xml integration.

    I'm not sure what the SM toolkit is.  Could you explain it or provide a link?
    If you and your collegaue are admins, then I would say skip the overhead of an XML document for now and just manage the schedule in a subflow.
    Example:
    Subflow Variables
    String oncall_number_current = ""String oncall_number_avholloway = "916125551212"String oncall_number_jsmith = "916125551313"String oncall_number_default = "916125551000"Date today = D[now]
    Subflow Script
    StartSwitch int (today.month)  January (value == 1)
        /* In Jan, from the first to the fifteenth, Anthony is on call */    If (today.date >= 1 && today.date <= 15)
          True        Set oncall_number_current = oncall_number_avholloway
            Goto End of Script      False
        /* In Jan, from the sixthteenth to the thirty-first, John is on call */    If (today.date >= 16 && today.date <= 31)
          True        Set oncall_number_current = oncall_number_jsmith
            Goto End of Script      False
      Febraury (value == 2)    /* In Feb, from the first to the sixth, Anthony is on call */
        If (today.date >= 1 && today.date <= 6)      True
            Set oncall_number_current = oncall_number_avholloway        Goto End of Script
          False    /* In Feb, on the seventh, from midnight to noon, Anthony is on call */
        If (today.date == 7 && today.hod >= 0 && today.hod <= 11)      True
            Set oncall_number_current = oncall_number_avholloway        Goto End of Script
          False    /* In Feb, on the seventh, from noon to midnight, John is on call */
        If (today.date == 6 && today.hod >= 12 && today.hod <= 23)      True
            Set oncall_number_current = oncall_number_jsmith        Goto End of Script
          False    /* In Feb, from the eighth to the twenty-nineth, John is on call */
        If (today.date >= 8 && today.date <= 29)      True
            Set oncall_number_current = oncall_number_jsmith        Goto End of Script
          False  March (value == 3)
        ..etc, etc, building out the whole year...  Default
        /* Set the default on call number */    Set oncall_number_current = oncall_number_default
        Goto End of ScriptLabel End of Script
    End
    Main Script Variables
    String oncall_number = ""
    Main Script Script
    ...oncall_number = Call Subflow (SCRIPT[oncall-sublfow.aef], oncall_number_current)Call Redirect (--Triggering Contact--, oncall_number)...
    In the example of January 3rd, the subflow would execute 4 steps.  That's not much at all.  Of course you would only call the subflow if the hours called for it.  This would eliminate unecessary calls to the subflow.
    To update the oncall, just update the script, save, upload, refresh, and then refresh the apps which call it.  No down time at all!
    I hope that makes sense.  If not, ask questions.
    Anthony Holloway
    Please use the star ratings to help drive great content to the top of searches.

  • Service Call based A/R Invoice

    Hai Experts,
         How to find service call based expenses.
    Regards
    Mohamed Yousuf Ali M I

    Hi Muhammad Yousuf
    Do you want to find out how many service calls are there against which there's no AR invoice made or you want to separate AR invoices routed from Service calls separately and the normal AR invoices separately.
    If you want separate AR invoices for normal business and routed from Service call you could do so with the help of numbering series, but if you are looking for the first one i.e. how many service calls are there without an AR invoice maybe a sql based query will help you out.
    I hope my answers helps you out.
    Regards
    Iftikhar

  • Dial tone after first two digits are dialed

    I was just made aware that one of our sites when dialing out (local, LD, TF, etc) receives dial tone after dialing the first two digits of any number.  They can continue to dial the number and will call out.  I am trying to understand where the dial tone is coming from after the 2nd digit is dialed.  Any idea's?
    CUCM 8.5
    2821 Gateway - MGCP - T1PRI

    I absolutely agree with Aaron's statement that ALL route patterns need to have the 'provide outside dial tone' checked on all applicable route patterns.  I would also like to note that any dial plan overlap with those route patterns would also cause delay in secondary dial tone.
    For example if you dial 9 to get out and a dial-able extension gets added accidentally to a phone that also starts with a 9, that could cause similar issues.
    So after checking route patterns first and if all that looks correct, I recommend Call Routing -> Route Plan Report, to search for ALL numbers that start with your outside access code.

  • Route calls to two different CSQs, but show single set of Service Level stats on report

    We have a single node UCCX 9.0.2 Premium environment to handle our ACD operations.  Our agents take inbound customer service, claims and sales calls for a few dozen of our clients.  All of these calls are currently taken by the same two teams of people regardless of which client it is for, with the sales calls going to one team and the customer service and claims calls going to the other team.  There is a Sales CSQ and Skill for each client, and a Customer Service CSQ and Skill for each client.  Currently the caller is presented with a menu giving two options...press 1 for customer service, press 2 for sales.
    What we are looking at doing is adding a third prompt specifically for claims.  Claims issues are handled by the Customer Service team, but only certain members of the team.  Obviously I can create a new CSQ and Skill for Claims for each client, then have the new prompt route to the CSQ for Claims.
    The challenging part is the reporting for this.  We have to report Service Level statistics for Customer Service calls (but not sales) for each client, to show whether or not we're meeting the service level agreement requirements.  The splitting out of claims calls to be handled by specific people is something being requested by our internal management, not the client.  But as far as the client is concerned those are customer service calls, they would count toward our customer service SLA, and they expect to see a single SLA statistic reported.
    I know that it's only possible to add multiple skills to a CSQ and force agent selection based on a specific skill in CCE (not available in CCX).  But is there any way to script my way around this to get the same end result, and have the reporting data still reflect a single set of CSQ service level stats?

    Thanks Aaron.  We're running HRC right now, but I've been dying to switch us to the version of CUIC that's built in to CCX for quite a while and it appears I may be able to do so soon.  I'm hoping to utilize some of the additional flexibility of the saved reporting templates in CUIC to massage the data formatting as needed.
    CUIC Premium is something our management will be considering, but I'm anticipating the license for it being very expensive and probably causing them to eliminate it as an option.  Unfortunately I haven't been able to get my hands on a demo copy of it to try to "sell" it to them either.
    Thanks again for your help Aaron.

  • CATS Problem with Activity types, it takes the first 6 digits of PERNR

    Hello Gurus!
    I have configured cats and maintained infotype 0315. When i go to CAT2, i dont see any default values on the screen from 315. When i try to call the cost center and activity type,. enter the times and hit enter, it hits an error saying: Activity type 001131is invalid for 00113199. It doesnt speak abt the activity type i assigned, it probably takes the first 6 digits of personal number as the activity type and throws an error.
    Please help me what to do with this... its very urgent..
    Points granted..
    Thanks,
    Soniya Singh

    Which version of SAP are u using. I don't see any message with your description in the message class.
          I think the values on CATS are only defaulted when u give the WBS element and hrs and press ENTER. Try this and u should be able to get the values defaulted from 315 assuming you have set the default values in CAC1 and also please check the settings in the Initial screen of CAT2 if any other values are getting defaulted in Persons tab and also check ur activity type has the valid Controlling area.
    Edited by: Madhu Gudur on Feb 21, 2008 5:58 AM

  • CUCM route calls diferents gateways/sip trunks

    Hi at all, I have CUCM 6.1.1 and I want to route calls throughs diferents gateways or sip trunks.
    I planned to do with route groups, but I can not add on a route group a H323 gateway and a SIP trunk at the same time.
    How can route calls in different ways?
    In the CUCM page "Route patterns" I want to make alternative routes, for example, the number 6666 is on route "666X" through a "gateway/route list", but if I can not contact by going this route I need to go through the alternative route "XXXX" through another "gateway/route list".
    How can I make by going first to one pattern and then the other pattern?
    Thanks!
    Fran

    Ok thanks but one question more.... if I have a MGCP Gateway? Can I do this from my MGCP Gateway? or I need an H323 Gateway.
    And another possibility.... I dont know if it's right....
    Can I do this with Partitions and CSS?
    This is for example I 'll have a CSS "Global" with Partitions (Primary and Secondary);
    It could go the route first to 666x Gateway with CSS "Global" and partitions (Primary and Secondary). This way I do not know if it is routed first through the Gateway of the partition as Primary and Secondary alternative partition that is served by the SIP Trunk.
    Using the "Dial Number Analyzer" I get the second path XXXX (SIP Trunk) as an alternative route ...

  • Getting invalid-attribute-value Error during Delta Import on Call-based ECMA2

    I'm developing an ECMA2 MA to which supports delta imports.  I have found very few samples of working code to do delta imports, so my attempts are created
    using a lot of trial and error... Any samples of working Call based MA's with delta support would be much appreciated :-)
    The data is located in a SQL server and the schema (for delta) is like this (simplified):
    EmpID string
    Status string
    UPDATESTATUS string (<-- This is the update column with values New/Update/Delete)
    For each EmpID, there may be multiple Status values, i.e. Status should be imported into a multi value attribute in FIM.
    For the full import this is working as expected, but I run into issues when attempting to do the delta imports
    The code for the delta import
    private
    GetImportEntriesResults GetImportEntries_Delta(GetImportEntriesRunStep importRunStep)
    GetImportEntriesResults importReturnInfo;
    List<CSEntryChange> csentries =
    new List<CSEntryChange>();
    string employeeID =
    null;
    string appStatus =
    null;
    string currEmployeeID =
    CSEntryChange csentry =
    null;
    List<string> appStatusList =
    new List<string>();
    string changeMode =
    for (int i = currentReadRecord; i <= da.Tables["AppStatus"].Rows.Count - 1; i++)
    if (currEmployeeID != da.Tables["AppStatus"].Rows[i].ItemArray.GetValue(0).ToString().Trim())
    if (currEmployeeID !=
    "") // this should be true except for the first run
    csentry.AttributeChanges.Add(AttributeChange.CreateAttributeUpdate("IdentityStores", appStatusList));
    csentries.Add(csentry);
    appStatusList = new
    List<string>();
    if (csentries.Count >= m_importPageSize)
                  currentReadRecord = i;
    importReturnInfo = new
    GetImportEntriesResults();
    importReturnInfo.MoreToImport = (i <= da.Tables["AppStatus"].Rows.Count - 1);
    importReturnInfo.CSEntries = csentries;
    return importReturnInfo;
    changeMode = da.Tables["AppStatus"].Rows[i].ItemArray.GetValue(2).ToString().Trim();
    csentry = CSEntryChange.Create();
    csentry.ObjectType = "ApplicationIdentity";
    employeeID = da.Tables["AppStatus"].Rows[i].ItemArray.GetValue(0).ToString().Trim();
    currEmployeeID = (string)employeeID;
    switch (changeMode)
    case "New":
    csentry.ObjectModificationType = ObjectModificationType.Add;
    csentry.AttributeChanges.Add(AttributeChange.CreateAttributeAdd("EmployeeID", employeeID));
    break;
    case "Update":
    csentry.ObjectModificationType = ObjectModificationType.Update;
    csentry.DN = employeeID;
    break;
    case "Delete":
    csentry.ObjectModificationType = ObjectModificationType.Delete;
                         csentry.DN = employeeID;
    break;
    default:
    throw new
    UnexpectedDataException(string.Format("Unknown modification type: {0}", changeMode));
    appStatus = da.Tables["AppStatus"].Rows[i].ItemArray.GetValue(1).ToString().Trim();
    appStatusList.Add(appStatus);
    // save the last object
    if (csentry != null)
    csentry.AttributeChanges.Add(AttributeChange.CreateAttributeUpdate("IdentityStores", appStatusList));
    csentries.Add(csentry);
    importReturnInfo = new
    GetImportEntriesResults();
    importReturnInfo.MoreToImport = false;
    importReturnInfo.CSEntries = csentries;
    return importReturnInfo;
    The code compiles and executes, but the delta import fails with the "invalid-attribute-value" message per csentry.
    From the eventlog I have the following message
    The server encountered an unexpected error while performing an operation for a management agent.
    "System.InvalidCastException: Unable to cast object of type 'System.Collections.Generic.List`1[System.String]' to type 'System.String'.
       at Microsoft.MetadirectoryServices.Impl.Ecma2ConversionServices.AddAttributeToDImage(CDImage* pdimage, String attributeName, AttributeModificationType
    attributeModificationType, IList`1 attributeValueChanges, Int32 escapeReferenceDNValues)
       at Microsoft.MetadirectoryServices.Impl.Ecma2ConversionServices.ConvertToDImage(CSEntryChange csEntryChange, CDImage** ppDImage, Int32 escapeReferenceDNValues)
       at Microsoft.MetadirectoryServices.Impl.ScriptHost.InvokeExtMA_ImportEntry(UInt32 cBatchSize, UInt16* pcszCustomData, UInt32 cFullObject,
    _OCTET* rgoctFullObject, UInt32* rgomodt, UInt32* pcpcszChangedAttributes, UInt16*** prgpcszChangedAttributes, Int32 fIsDNStyleNone, UInt16** ppszUpdatedCustomData, _OCTET* rgoctCSImage, Int32* rgextec, UInt16** rgpszErrorName, UInt16** rgpszErrorDetail, Int32*
    pfMoreToImport)"
    To me it seems as if FIM is unable to process the List of strings that is returned when processing the delta. Remember that this works OK when doing the full import. 
    Do you have any suggestions as to why this fails?
    Kjetil

    Hi,
    Thank you Søren! I got some good clues for the right direction from your answer. If anyone would be looking same answers the correct solution would be down below. I hope it would be help for someone else too.
    Get-Shema.ps1
    $obj
    = New-Object
    -Type PSCustomObject
    $obj
    | Add-Member
    -Type NoteProperty
    -Name "Anchor-Id|String"
    -Value 1
    $obj
    | Add-Member
    -Type NoteProperty
    -Name "objectClass|String"
    -Value "user"
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "IsLicensed|Boolean"
    -Value $true
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "FirstName|String"
    -Value ""
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "LastName|String"
    -Value ""
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "mail|String"
    -Value ""
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "immutableId|String"
    -Value ""
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "DisplayName|String"
    -Value ""
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "UsageLocation|String"
    -Value ""
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "ProxyAddresses|String[]"
    -Value ("","")
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "Licenses|String[]"
    -Value ("","")
    $obj
    Import.ps1
    #Always pass objects as hash table in pipeline
    foreach ($User
    in $Users)
    $obj = @{}
    $obj.Add("Id",
    $User.UserPrincipalName)
    $obj.Add("objectClass",
    "user")
    $obj.Add("IsLicensed",
    $User.IsLicensed)
    $obj.Add("FirstName",
    $User.FirstName)
    $obj.Add("LastName",
    $User.LastName)
    $obj.Add("mail",
    $User.UserPrincipalName)
    $obj.Add("immutableId",
    $User.immutableId)
    $obj.Add("DisplayName",
    $User.DisplayName)
    $obj.Add("UsageLocation",
    $User.UsageLocation)
    $obj.Add("ProxyAddresses", ($User.ProxyAddresses
    -ne ""))
    $obj.add("Licenses", ($User.Licenses.AccountSkuId))
    $obj
    Marti

  • Redirect Calls Based on Calling Party Number

    Hi All,
    I am looking for a method to redirect inbound PSTN calls based on the calling party number.  I can do this in CUCM 9 or IOS.  I find plenty of documentation out there on blocking calls by calling party number but nothing on redirecting.     
    My situation is this.  We are a large company and often get request from users to block calls from annoying or harassing numbers.  Rather than block them I would like to drive them into a mailbox where the caller can attempt to find a resolution if they feel the calls was blocked in error.
    Has anyone else attempted something like this? 
    Thanks

    Hi Jerold,
    If you are using CUCM 8.x and above, you can re-direct the call on the basis of the calling party number.
    The configuration is very similar to block a call that uses the new feature added in CUCM 8.x and above (
    Route Next Hop By Calling Party Number). The step 8 in the following document explains how to handle the call when the call has be routed by the calling party number. The translation pattern is configure with Route Option as "Block this pattern".
    https://supportforums.cisco.com/docs/DOC-18367
    In order to re-direct the call, you can configure the Route Option with "Route this pattern" and specify the desired destination pattern under "Called party Transformation Mask". Also, make sure to add the appropriate CSS to be able to route the call.
    HTH,
    Jagpreet Singh Barmi

  • UCCE Router Call Key Reset Post Private Link Failure

                     Hi Guys
    As above. My customer has UCCE v7.5.8 together with CVP 7.0 designed with a pair of Proggers geographically split with a 2x10Mb LES between the 2 sites supporting both the visible and private traffic (One LES for each).
    The LES supporting the Private traffic 'blipped' but recovered within 10 mins. Now each day @ midnight Router Call Key starts at 201, however,whilst looking into a reporting issue I noticed that Router Call Key, seems to have reset to 201, but prepended with digits 34768, making a Router Call Key of 34768201. This appears to coincide with the time of the Private link recovery. Has anyone seen this before? I'm guessing this denotes a state-transfer/Db re-sync has taken place, or am I barking up the wrong tree?
    Cheers
    Freddie

    Thanks Lasse,
    When running that tool, all the links are showing zero utilization - not sure if the tool is able to show any more detailed information? 
    I should state that this Lync implementation is not live, there no Lync clients out on the corporate network, and I'm not expecting any traffic on the WAN site links at this point.
    It just seems to be an issue when accessing as a remote user.   At this point I think it must be because I have misconfigured CAC.  And because it is happening for a conference and not peer to peer for the remote user, then it is probably the relationship
    between the front end server pool and Edge server / remote user.  
    I have a local / central site defined in CAC with no bandwidth policy applied.  Initially the subnets assigned to this central site were just the LAN subnets for the central site that I knew would have Lync clients running on them.  Then as part
    of troubleshooting decided to add the Edge Internal IP, and then Edge external IPs as subnets associated with this central site.  Still getting the same problem though.
    Its around about times like now where I wonder if it is something simple like a service needing restarting so I'll double check things like this.   If you have any other ideas it would be greatly appreciated - a bit stuck.
    Regards,
    James

  • Calls going out displaying extra digits to called party

    I have calls going out of one of our offices that have extra digits appended to the end. Instead of caller id showing the 10 digits of the calling party, it shows 15 repeating the last 5 digits again. If my number was 1234567890, it goes out 123456789067890. Obviously that looks strange and the called party often times doesn't answer. I've been comparing with some of our other sites but I don't see anything obvious. I'm new to voice, I've looked at the dial peer and translation rule on our gateway for that site. Where else should I be looking for this problem. AT&T says they aren't sending the extra digits.
    Thanks

    Here is the log from a test call after enabling the debugs. Sequence# 095713 includes the extra digits. Thanks for the help.
    095693: Sep 30 09:48:53.467 CST: //-1/00E60F465903/CCAPI/cc_api_display_ie_subfields:
       cc_api_call_setup_ind_common:
       cisco-username=Dallas Main Number
       ----- ccCallInfo IE subfields -----
       cisco-ani=2147651234
       cisco-anitype=0
       cisco-aniplan=0
       cisco-anipi=0
       cisco-anisi=1
       dest=917139074321
       cisco-desttype=0
       cisco-destplan=0
       cisco-rdie=FFFFFFFF
       cisco-rdn=
       cisco-rdntype=-1
       cisco-rdnplan=-1
       cisco-rdnpi=-1
       cisco-rdnsi=-1
       cisco-redirectreason=-1   fwd_final_type =0
       final_redirectNumber =
       hunt_group_timeout =0
    095694: Sep 30 09:48:53.467 CST: //-1/00E60F465903/CCAPI/cc_api_call_setup_ind_common:
       Interface=0x4A04DDA4, Call Info(
       Calling Number=2147651234,(Calling Name=)(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=917139074321(TON=Unknown, NPI=Unknown),
       Calling Translated=FALSE, Subscriber Type Str=Unknown, FinalDestinationFlag=TRUE,
       Incoming Dial-peer=101, Progress Indication=NULL(0), Calling IE Present=TRUE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, CLID Transparent=FALSE), Call Id=27508
    095695: Sep 30 09:48:53.467 CST: //-1/00E60F465903/CCAPI/ccCheckClipClir:
       In: Calling Number=2147651234(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed)
    095696: Sep 30 09:48:53.467 CST: //-1/00E60F465903/CCAPI/ccCheckClipClir:
       Out: Calling Number=2147651234(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed)
    095697: Sep 30 09:48:53.467 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    095698: Sep 30 09:48:53.467 CST: :cc_get_feature_vsa malloc success
    095699: Sep 30 09:48:53.467 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    095700: Sep 30 09:48:53.467 CST:  cc_get_feature_vsa count is 3
    095701: Sep 30 09:48:53.467 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    095702: Sep 30 09:48:53.467 CST: :FEATURE_VSA attributes are: feature_name:0,feature_time:1309707448,feature_id:27508
    095703: Sep 30 09:48:53.467 CST: //27508/00E60F465903/CCAPI/cc_api_call_setup_ind_common:
       Set Up Event Sent;
       Call Info(Calling Number=2147651234(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=917139074321(TON=Unknown, NPI=Unknown))
    095704: Sep 30 09:48:53.471 CST: //27508/00E60F465903/CCAPI/cc_process_call_setup_ind:
       Event=0x4B77BFD0
    095705: Sep 30 09:48:53.471 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_setupind_match_search:
       Try with the demoted called number 917139074321
    095706: Sep 30 09:48:53.471 CST: //27508/00E60F465903/CCAPI/ccCallSetContext:
       Context=0x4E138418
    095707: Sep 30 09:48:53.471 CST: //27508/00E60F465903/CCAPI/cc_process_call_setup_ind:
       >>>>CCAPI handed cid 27508 with tag 101 to app "_ManagedAppProcess_Default"
    095708: Sep 30 09:48:53.471 CST: //27508/00E60F465903/CCAPI/ccCallProceeding:
       Progress Indication=NULL(0)
    095709: Sep 30 09:48:53.475 CST: //27508/00E60F465903/CCAPI/ccCallSetupRequest:
       Destination=, Calling IE Present=TRUE, Mode=0,
       Outgoing Dial-peer=91, Params=0x4E1276A8, Progress Indication=NULL(0)
    095710: Sep 30 09:48:53.475 CST: //27508/00E60F465903/CCAPI/ccCheckClipClir:
       In: Calling Number=214765123451234(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed)
    095711: Sep 30 09:48:53.475 CST: //27508/00E60F465903/CCAPI/ccCheckClipClir:
       Out: Calling Number=214765123451234(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed)
    095712: Sep 30 09:48:53.475 CST: //27508/00E60F465903/CCAPI/ccCallSetupRequest:
       Destination Pattern=91[2-9].........$, Called Number=917139074321, Digit Strip=TRUE
    095713: Sep 30 09:48:53.475 CST: //27508/00E60F465903/CCAPI/ccCallSetupRequest:
       Calling Number=214765123451234(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=917139074321(TON=Unknown, NPI=Unknown),
       Redirect Number=, Display Info=Dallas Main Number
       Account Number=Dallas Main Number, Final Destination Flag=TRUE,
       Guid=00E60F46-E5D0-A142-5903-1B030A0A023F, Outgoing Dial-peer=91
    095714: Sep 30 09:48:53.475 CST: //27508/00E60F465903/CCAPI/cc_api_display_ie_subfields:
       ccCallSetupRequest:
       cisco-username=Dallas Main Number
       ----- ccCallInfo IE subfields -----
       cisco-ani=214765123451234
       cisco-anitype=0
       cisco-aniplan=0
       cisco-anipi=0
       cisco-anisi=1
       dest=917139074321
       cisco-desttype=0
       cisco-destplan=0
       cisco-rdie=FFFFFFFF
       cisco-rdn=
       cisco-rdntype=-1
       cisco-rdnplan=-1
       cisco-rdnpi=-1
       cisco-rdnsi=-1
       cisco-redirectreason=-1   fwd_final_type =0
       final_redirectNumber =
       hunt_group_timeout =0
    095715: Sep 30 09:48:53.475 CST: //27508/00E60F465903/CCAPI/ccIFCallSetupRequestPrivate:
       Interface=0x4B7C2F08, Interface Type=6, Destination=, Mode=0x0,
       Call Params(Calling Number=214765123451234,(Calling Name=Dallas Main Number)(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=917139074321(TON=Unknown, NPI=Unknown), Calling Translated=FALSE,
       Subscriber Type Str=Unknown, FinalDestinationFlag=TRUE, Outgoing Dial-peer=91, Call Count On=FALSE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, tg_label_flag=0, Application Call Id=)
    095716: Sep 30 09:48:53.475 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    095717: Sep 30 09:48:53.479 CST: :cc_get_feature_vsa malloc success
    095718: Sep 30 09:48:53.479 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    095719: Sep 30 09:48:53.479 CST:  cc_get_feature_vsa count is 4
    095720: Sep 30 09:48:53.479 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    095721: Sep 30 09:48:53.479 CST: :FEATURE_VSA attributes are: feature_name:0,feature_time:1309709240,feature_id:27509
    095722: Sep 30 09:48:53.479 CST: //27509/00E60F465903/CCAPI/ccIFCallSetupRequestPrivate:
       SPI Call Setup Request Is Success; Interface Type=6, FlowMode=1
    095723: Sep 30 09:48:53.479 CST: //27509/00E60F465903/CCAPI/ccCallSetContext:
       Context=0x4E127658
    095724: Sep 30 09:48:53.479 CST: //27508/00E60F465903/CCAPI/ccSaveDialpeerTag:
       Outgoing Dial-peer=91
    095725: Sep 30 09:48:53.483 CST: ISDN Se0/0/0:23 Q931: pak_private_number: Invalid type/plan 0x0 0x0 may be overriden; sw-type 13
    095726: Sep 30 09:48:53.483 CST: ISDN Se0/0/0:23 Q931: Applying typeplan for sw-type 0xD is 0x1 0x1, Calling num 214765123451234
    095727: Sep 30 09:48:53.487 CST: ISDN Se0/0/0:23 Q931: Sending SETUP  callref = 0x13D3 callID = 0x9354 switch = primary-ni interface = User
    095728: Sep 30 09:48:53.487 CST: ISDN Se0/0/0:23 Q931: TX -> SETUP pd = 8  callref = 0x13D3
            Bearer Capability i = 0x8090A2
                    Standard = CCITT
                    Transfer Capability = Speech  
                    Transfer Mode = Circuit
                    Transfer Rate = 64 kbit/s
            Channel ID i = 0xA98397
                    Exclusive, Channel 23
            Display i = 'Dallas Main Number'
            Calling Party Number i = 0x1181, '214765123451234'
                    Plan:ISDN, Type:International
            Called Party Number i = 0x80, '17139074321'
                    Plan:Unknown, Type:Unknown
    095729: Sep 30 09:48:53.551 CST: ISDN Se0/0/0:23 Q931: RX <- CALL_PROC pd = 8  callref = 0x93D3
            Channel ID i = 0xA98397
                    Exclusive, Channel 23
    095730: Sep 30 09:48:53.579 CST: //27509/00E60F465903/CCAPI/cc_api_call_proceeding:
       Interface=0x4B7C2F08, Progress Indication=NULL(0)
    095731: Sep 30 09:48:55.295 CST: ISDN Se0/0/0:23 Q931: RX <- ALERTING pd = 8  callref = 0x93D3
            Progress Ind i = 0x8488 - In-band info or appropriate now available
    095732: Sep 30 09:48:55.295 CST: //27509/00E60F465903/CCAPI/cc_api_call_alert:
       Interface=0x4B7C2F08, Progress Indication=INBAND(8), Signal Indication=SIGNAL RINGBACK(1)
    095733: Sep 30 09:48:55.295 CST: //27509/00E60F465903/CCAPI/cc_api_call_alert:
       Call Entry(Retry Count=0, Responsed=TRUE)
    095734: Sep 30 09:48:55.299 CST: //27508/00E60F465903/CCAPI/ccCallAlert:
       Progress Indication=INBAND(8), Signal Indication=SIGNAL RINGBACK(1)
    095735: Sep 30 09:48:55.299 CST: //27508/00E60F465903/CCAPI/ccCallAlert:
       Call Entry(Responsed=TRUE, Alert Sent=TRUE)
    095736: Sep 30 09:48:55.299 CST: //27509/00E60F465903/CCAPI/cc_api_get_called_ccm_detected:
       CallInfo(ccm detected=0)
    095737: Sep 30 09:48:55.299 CST: //27508/00E60F465903/CCAPI/ccConferenceCreate:
       (confID=0x4E1EE068, callID1=0x6B74, gcid=0-0-0-0, tag=0x0)
    095738: Sep 30 09:48:55.299 CST: //27509/00E60F465903/CCAPI/ccConferenceCreate:
       (confID=0x4E1EE068, callID2=0x6B75, gcid=0-0-0-0, tag=0x0)
    095739: Sep 30 09:48:55.299 CST: //27508/00E60F465903/CCAPI/ccConferenceCreate:
       Conference Id=0x4E1EE068, Call Id1=27508, Call Id2=27509, Tag=0x0
    095740: Sep 30 09:48:55.299 CST: //27508/xxxxxxxxxxxx/CCAPI/cc_api_get_xcode_stream:
    095741: Sep 30 09:48:55.299 CST: cc_api_get_xcode_stream : 4702
    095742: Sep 30 09:48:55.299 CST: //27508/00E60F465903/CCAPI/cc_api_bridge_done:
       Conference Id=0x2A56, Source Interface=0x4A04DDA4, Source Call Id=27508,
       Destination Call Id=27509, Disposition=0x0, Tag=0x0
    095743: Sep 30 09:48:55.299 CST: //27509/00E60F465903/CCAPI/cc_api_bridge_done:
       Conference Id=0x2A56, Source Interface=0x4B7C2F08, Source Call Id=27509,
       Destination Call Id=27508, Disposition=0x0, Tag=0xFFFFFFFF
    095744: Sep 30 09:48:55.299 CST: //27508/00E60F465903/CCAPI/cc_generic_bridge_done:
       Conference Id=0x2A56, Source Interface=0x4B7C2F08, Source Call Id=27509,
       Destination Call Id=27508, Disposition=0x0, Tag=0xFFFFFFFF
    095745: Sep 30 09:48:55.299 CST: //27508/00E60F465903/CCAPI/ccConferenceCreate:
       Call Entry(Conference Id=0x2A56, Destination Call Id=27509)
    095746: Sep 30 09:48:55.299 CST: //27509/00E60F465903/CCAPI/ccConferenceCreate:
       Call Entry(Conference Id=0x2A56, Destination Call Id=27508)
    095747: Sep 30 09:48:55.299 CST: //27509/00E60F465903/CCAPI/cc_api_caps_ind:
       Destination Interface=0x4A04DDA4, Destination Call Id=27508, Source Call Id=27509,
       Caps(Codec=0x1, Fax Rate=0x1, Vad=0x1,
       Modem=0x2, Codec Bytes=20, Signal Type=3)
    095748: Sep 30 09:48:55.303 CST: //27509/00E60F465903/CCAPI/cc_api_caps_ind:
       Caps(Playout Mode=1, Playout Initial=60(ms), Playout Min=40(ms),
       Playout Max=1000(ms), Fax Nom=300(ms))
    095749: Sep 30 09:48:55.303 CST: //27508/00E60F465903/CCAPI/ccCallNotify:
       Data Bitmask=0x7, Call Id=27508
    095750: Sep 30 09:48:55.303 CST: //27509/00E60F465903/CCAPI/cc_api_get_called_ccm_detected:
       CallInfo(ccm detected=0)
    095751: Sep 30 09:48:55.303 CST: //27508/00E60F465903/CCAPI/cc_api_get_delay_xport:
       CallInfo(delay xport=FALSE)
    095752: Sep 30 09:48:55.311 CST: //27508/00E60F465903/CCAPI/cc_process_notify_bridge_done:
       Conference Id=0x2A56, Call Id1=27508, Call Id2=27509
    095753: Sep 30 09:48:55.811 CST: //27508/00E60F465903/CCAPI/cc_api_caps_ind:
       Destination Interface=0x4B7C2F08, Destination Call Id=27509, Source Call Id=27508,
       Caps(Codec=0x1, Fax Rate=0x80, Vad=0x1,
       Modem=0x0, Codec Bytes=160, Signal Type=2)
    095754: Sep 30 09:48:55.811 CST: //27508/00E60F465903/CCAPI/cc_api_caps_ind:
       Caps(Playout Mode=1, Playout Initial=60(ms), Playout Min=40(ms),
       Playout Max=1000(ms), Fax Nom=300(ms))
    095755: Sep 30 09:48:55.811 CST: //27508/00E60F465903/CCAPI/cc_api_caps_ack:
       Destination Interface=0x4B7C2F08, Destination Call Id=27509, Source Call Id=27508,
       Caps(Codec=g711ulaw(0x1), Fax Rate=FAX_RATE_14400(0x80), Vad=OFF(0x1),
       Modem=OFF(0x0), Codec Bytes=160, Signal Type=2, Seq Num Start=8122)
    095756: Sep 30 09:48:55.815 CST: //27509/00E60F465903/CCAPI/cc_api_caps_ack:
       Destination Interface=0x4A04DDA4, Destination Call Id=27508, Source Call Id=27509,
       Caps(Codec=g711ulaw(0x1), Fax Rate=FAX_RATE_14400(0x80), Vad=OFF(0x1),
       Modem=OFF(0x0), Codec Bytes=160, Signal Type=2, Seq Num Start=8122)
    095757: Sep 30 09:48:55.819 CST: //27509/00E60F465903/CCAPI/cc_api_voice_mode_event:
       Call Id=27509
    095758: Sep 30 09:48:55.819 CST: //27509/00E60F465903/CCAPI/cc_api_voice_mode_event:
       Call Entry(Context=0x4E127658)
    095759: Sep 30 09:49:03.691 CST: //27507/E25C9BF99854/CCAPI/cc_api_call_disconnected:
       Cause Value=16, Interface=0x4A04DDA4, Call Id=27507
    095760: Sep 30 09:49:03.695 CST: //27507/E25C9BF99854/CCAPI/cc_api_call_disconnected:
       Call Entry(Responsed=TRUE, Cause Value=16, Retry Count=0)
    095761: Sep 30 09:49:03.695 CST: //27506/E25C9BF99854/CCAPI/ccConferenceDestroy:
       Conference Id=0x2A55, Tag=0x0
    095762: Sep 30 09:49:03.695 CST: //27506/E25C9BF99854/CCAPI/cc_api_bridge_drop_done:
       Conference Id=0x2A55, Source Interface=0x4B7C2F08, Source Call Id=27506,
       Destination Call Id=27507, Disposition=0x0, Tag=0x0
    095763: Sep 30 09:49:03.695 CST: //27507/E25C9BF99854/CCAPI/cc_api_bridge_drop_done:
       Conference Id=0x2A55, Source Interface=0x4A04DDA4, Source Call Id=27507,
       Destination Call Id=27506, Disposition=0x0, Tag=0x0
    095764: Sep 30 09:49:03.695 CST: //27506/E25C9BF99854/CCAPI/cc_generic_bridge_done:
       Conference Id=0x2A55, Source Interface=0x4A04DDA4, Source Call Id=27507,
       Destination Call Id=27506, Disposition=0x0, Tag=0x0
    095765: Sep 30 09:49:03.695 CST: //27506/E25C9BF99854/CCAPI/ccCallDisconnect:
       Cause Value=16, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect Cause=0)
    095766: Sep 30 09:49:03.695 CST: //27506/E25C9BF99854/CCAPI/ccCallDisconnect:
       Cause Value=16, Call Entry(Responsed=TRUE, Cause Value=16)
    095767: Sep 30 09:49:03.695 CST: //27506/E25C9BF99854/CCAPI/cc_api_get_transfer_info:
       Transfer Number Is Null
    095768: Sep 30 09:49:03.695 CST: //27507/E25C9BF99854/CCAPI/ccCallDisconnect:
       Cause Value=16, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect Cause=16)
    095769: Sep 30 09:49:03.695 CST: //27507/E25C9BF99854/CCAPI/ccCallDisconnect:
       Cause Value=16, Call Entry(Responsed=TRUE, Cause Value=16)
    095770: Sep 30 09:49:03.699 CST: //27507/E25C9BF99854/CCAPI/cc_api_get_transfer_info:
       Transfer Number Is Null
    095771: Sep 30 09:49:03.719 CST: //27507/E25C9BF99854/CCAPI/cc_api_get_transfer_info:
       Transfer Number Is Null
    095772: Sep 30 09:49:03.723 CST: //27507/E25C9BF99854/CCAPI/cc_api_call_disconnect_done:
       Disposition=0, Interface=0x4A04DDA4, Tag=0x0, Call Id=27507,
       Call Entry(Disconnect Cause=16, Voice Class Cause Code=0, Retry Count=0)
    095773: Sep 30 09:49:03.723 CST: //27507/E25C9BF99854/CCAPI/cc_api_call_disconnect_done:
       Call Disconnect Event Sent
    095774: Sep 30 09:49:03.723 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    095775: Sep 30 09:49:03.723 CST: :cc_free_feature_vsa freeing 4E108850
    095776: Sep 30 09:49:03.723 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    095777: Sep 30 09:49:03.723 CST:  vsacount in free is 3
    095778: Sep 30 09:49:03.727 CST: %ISDN-6-DISCONNECT: Interface Serial0/0/0:0  disconnected from 2147662349 , call lasted 105 seconds
    095779: Sep 30 09:49:03.731 CST: ISDN Se0/0/0:23 Q931: TX -> DISCONNECT pd = 8  callref = 0x833F
            Cause i = 0x8090 - Normal call clearing
    095780: Sep 30 09:49:03.759 CST: ISDN Se0/0/0:23 Q931: RX <- RELEASE pd = 8  callref = 0x033F
    095781: Sep 30 09:49:03.759 CST: ISDN Se0/0/0:23 Q931: TX -> RELEASE_COMP pd = 8  callref = 0x833F
    095782: Sep 30 09:49:03.767 CST: //27506/E25C9BF99854/CCAPI/cc_api_call_disconnect_done:
       Disposition=0, Interface=0x4B7C2F08, Tag=0x0, Call Id=27506,
       Call Entry(Disconnect Cause=16, Voice Class Cause Code=0, Retry Count=0)
    095783: Sep 30 09:49:03.767 CST: //27506/E25C9BF99854/CCAPI/cc_api_call_disconnect_done:
       Call Disconnect Event Sent
    095784: Sep 30 09:49:03.767 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    095785: Sep 30 09:49:03.767 CST: :cc_free_feature_vsa freeing 4E109570
    095786: Sep 30 09:49:03.767 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    095787: Sep 30 09:49:03.767 CST:  vsacount in free is 2
    095788: Sep 30 09:49:13.991 CST: ISDN Se0/0/0:23 Q931: RX <- CONNECT pd = 8  callref = 0x93D3
            Progress Ind i = 0x8482 - Destination address is non-ISDN
    095789: Sep 30 09:49:13.995 CST: %ISDN-6-CONNECT: Interface Serial0/0/0:22 is now connected to 17139074321 N/A
    095790: Sep 30 09:49:13.995 CST: ISDN Se0/0/0:23 Q931: TX -> CONNECT_ACK pd = 8  callref = 0x13D3
    095791: Sep 30 09:49:13.995 CST: //27509/00E60F465903/CCAPI/cc_api_call_connected:
       Interface=0x4B7C2F08, Data Bitmask=0x1, Progress Indication=DESTINATION IS NON ISDN(2),
       Connection Handle=0
    095792: Sep 30 09:49:13.999 CST: //27509/00E60F465903/CCAPI/cc_api_call_connected:
       Call Entry(Connected=TRUE, Responsed=TRUE, Retry Count=0)
    095793: Sep 30 09:49:13.999 CST: //27508/00E60F465903/CCAPI/ccCallConnect:
       Progress Indication=DESTINATION IS NON ISDN(2), Data Bitmask=0x1
    095794: Sep 30 09:49:13.999 CST: //27509/00E60F465903/CCAPI/cc_api_get_called_ccm_detected:
       CallInfo(ccm detected=0)
    095795: Sep 30 09:49:13.999 CST: //27508/00E60F465903/CCAPI/ccCallConnect:
       Call Entry(Connected=TRUE, Responsed=TRUE)
    095796: Sep 30 09:49:13.999 CST: //27508/00E60F465903/CCAPI/ccCallNotify:
       Data Bitmask=0x7, Call Id=27508
    095797: Sep 30 09:49:13.999 CST: //27509/00E60F465903/CCAPI/cc_api_get_called_ccm_detected:
       CallInfo(ccm detected=0)
    095798: Sep 30 09:49:33.319 CST: //27508/00E60F465903/CCAPI/cc_api_call_disconnected:
       Cause Value=16, Interface=0x4A04DDA4, Call Id=27508
    095799: Sep 30 09:49:33.323 CST: //27508/00E60F465903/CCAPI/cc_api_call_disconnected:
       Call Entry(Responsed=TRUE, Cause Value=16, Retry Count=0)
    095800: Sep 30 09:49:33.323 CST: //27508/00E60F465903/CCAPI/ccConferenceDestroy:
       Conference Id=0x2A56, Tag=0x0
    095801: Sep 30 09:49:33.323 CST: //27508/00E60F465903/CCAPI/cc_api_bridge_drop_done:
       Conference Id=0x2A56, Source Interface=0x4A04DDA4, Source Call Id=27508,
       Destination Call Id=27509, Disposition=0x0, Tag=0x0
    095802: Sep 30 09:49:33.323 CST: //27509/00E60F465903/CCAPI/cc_api_bridge_drop_done:
       Conference Id=0x2A56, Source Interface=0x4B7C2F08, Source Call Id=27509,
       Destination Call Id=27508, Disposition=0x0, Tag=0x0
    095803: Sep 30 09:49:33.323 CST: //27508/00E60F465903/CCAPI/cc_generic_bridge_done:
       Conference Id=0x2A56, Source Interface=0x4B7C2F08, Source Call Id=27509,
       Destination Call Id=27508, Disposition=0x0, Tag=0x0
    095804: Sep 30 09:49:33.327 CST: //27508/00E60F465903/CCAPI/ccCallDisconnect:
       Cause Value=16, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect Cause=16)
    095805: Sep 30 09:49:33.327 CST: //27508/00E60F465903/CCAPI/ccCallDisconnect:
       Cause Value=16, Call Entry(Responsed=TRUE, Cause Value=16)
    095806: Sep 30 09:49:33.327 CST: //27508/00E60F465903/CCAPI/cc_api_get_transfer_info:
       Transfer Number Is Null
    095807: Sep 30 09:49:33.327 CST: //27509/00E60F465903/CCAPI/ccCallDisconnect:
       Cause Value=16, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect Cause=0)
    095808: Sep 30 09:49:33.327 CST: //27509/00E60F465903/CCAPI/ccCallDisconnect:
       Cause Value=16, Call Entry(Responsed=TRUE, Cause Value=16)
    095809: Sep 30 09:49:33.327 CST: //27509/00E60F465903/CCAPI/cc_api_get_transfer_info:
       Transfer Number Is Null
    095810: Sep 30 09:49:33.351 CST: //27508/00E60F465903/CCAPI/cc_api_get_transfer_info:
       Transfer Number Is Null
    095811: Sep 30 09:49:33.355 CST: //27508/00E60F465903/CCAPI/cc_api_call_disconnect_done:
       Disposition=0, Interface=0x4A04DDA4, Tag=0x0, Call Id=27508,
       Call Entry(Disconnect Cause=16, Voice Class Cause Code=0, Retry Count=0)
    095812: Sep 30 09:49:33.355 CST: //27508/00E60F465903/CCAPI/cc_api_call_disconnect_done:
       Call Disconnect Event Sent
    095813: Sep 30 09:49:33.355 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    095814: Sep 30 09:49:33.355 CST: :cc_free_feature_vsa freeing 4E108CB0
    095815: Sep 30 09:49:33.355 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    095816: Sep 30 09:49:33.355 CST:  vsacount in free is 1
    095817: Sep 30 09:49:33.363 CST: %ISDN-6-DISCONNECT: Interface Serial0/0/0:22  disconnected from 17139074321 , call lasted 19 seconds
    095818: Sep 30 09:49:33.363 CST: ISDN Se0/0/0:23 Q931: TX -> DISCONNECT pd = 8  callref = 0x13D3
            Cause i = 0x8090 - Normal call clearing
    095819: Sep 30 09:49:33.399 CST: ISDN Se0/0/0:23 Q931: RX <- RELEASE pd = 8  callref = 0x93D3
    095820: Sep 30 09:49:33.399 CST: ISDN Se0/0/0:23 Q931: TX -> RELEASE_COMP pd = 8  callref = 0x13D3
    095821: Sep 30 09:49:33.403 CST: //27509/00E60F465903/CCAPI/cc_api_call_disconnect_done:
       Disposition=0, Interface=0x4B7C2F08, Tag=0x0, Call Id=27509,
       Call Entry(Disconnect Cause=16, Voice Class Cause Code=0, Retry Count=0)
    095822: Sep 30 09:49:33.403 CST: //27509/00E60F465903/CCAPI/cc_api_call_disconnect_done:
       Call Disconnect Event Sent
    095823: Sep 30 09:49:33.403 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    095824: Sep 30 09:49:33.403 CST: :cc_free_feature_vsa freeing 4E1093B0
    095825: Sep 30 09:49:33.403 CST: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    095826: Sep 30 09:49:33.403 CST:  vsacount in free is 0

Maybe you are looking for

  • Date parameters using MDX query

    Hello experts, Not sure if this question falls under SSAS or SSRS but I'm writing it here for now and hopefully get the answer. I'm using SSAS cube to develop a report using SSRS and this is the first time I'm doing it. I want to filter records based

  • Hi how to edit the text content in CSV

    Hi, I need to edit the text content in CSV using java script. The content goes like this.......... "missing image No" need to replace "No" by "Yes" Thanks in advance

  • Text on diagrams in a PDF textbook are smushed togther. How can I fix this?

    Here's a screenshot of what's going on. I'm using Adobe reader on android but a friend on PC is having the same problem. If I copy/paste the text, it comes out properly so all the words are there in the right order, they're just overlapping each othe

  • LDAP - Could not send e-mail

    Hi guru We used SAP MDM 5.5 SP 6 (64.92) In workflow we use e-mail notification, when SAP MDM Server work without LDAP e-mail is sending. When we load SAP MDM Server with LDAP, every time when we send e-mail we get error "Could not send e-mail " Send

  • Header div and text?

    I have a header with text and 2 divs, one div is right aligned and the other is below the main text which is also text and will be hyperlinked, I want the bottom text to be justified across the header but it wont work, I gave it a z value of 2 but st