Segregate calls based on incoming signals

We use 1 PRI line for voucher transactions. The current setup is whenever a POS(Point of Sale) terminal connects to the PRI, its routed to an application server via a Cisco Access Server. Is it possible to connect another application server through the same PRI line such that both work simultaneously? Note that both application servers run different applications and the calls has to be filtered and routed correspondingly.

Yes, it is possible. You will need to engage a reputable newtok engineer for the proper configuration to be made.

Similar Messages

  • How to block calls based ANI for individual user?

    I want to know how to block calls based on ANI for individual user in CUCM?  Lets say if the individual wants to block calls from certain number.
    Malicious call id - softkey will not work for our purpose.
    calls come to cucm via mgcp gateway.  cucm 9.x
    thanks,

    How to block calls has been asked hundreds, and hundreds of times at CSC, a simple search would have provided you with all the necesarry information. Please search before you ask
    https://supportforums.cisco.com/docs/DOC-19628
    HTH
    java
    if this helps, please rate
    www.cisco.com/go/pdihelpdesk

  • 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

  • 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

  • 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"

  • 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

  • Getting Sequence object from pre-step substep of Sequence Call based step type

    How to obtain reference to Sequence object from within pre-step substep of Sequence Call based custom step type?
    Given: new custom step type which based on NI Sequence Call step type. There is Pre-Step substep exist for this step type.
    How to get reference to Sequence object representing Sequence which will run?
    Although there is possible to examine SequenceAdapter and SequenceCallModule properties, it seems redundant since module (Sequence) is already loaded by TestStand ("NI TestStand Reference Manual. Table 3-4. Order of Actions that a Step Performs"   Action #6, while my code is running as Action #13).
    Thanks.
    Misha

    Could you explain what you want to do ?
    Why do you want to get the sequence object within a pre-step substep ?
    I give you some informations but I don't know if it's the better way to do what you want (because I don't know what you want to do with the sequence object).
    If the substep uses the ActiveX adapter :
    You can get the sequence object but you should save the object reference in a StationGlobals variable.
    And you should release the object reference within your sequence when you don't need it any more.
    If the substep uses another module adapter: 
    Get the step module, then the sequence name (module property).
    Then get the sequence object by the sequence name from the sequence file.
    Here are the paths to use for both methods :
    Sequence Name property path : Step.Module.SeqName
    Sequence Object path : RunState.SequenceFile.GetSequenceByName (seqname)

  • HT201342 Hi , I want ask you about imessage some time my account not availability and signal for calling some time no signal on my iPhone only search the signal , all pra

    Hi , I want ask you about imessage some time my account not availability and signal for calling some time no signal on my iPhone only search the signal ,

    I have taken it back to the Apple store genius bar, but they say they don't see anything wrong. Well unless you use it all day and experience the problems when they happen, you wont see anything wrong. But there are lots wrong with it. But this would be the same store as I purchased the phone. And they backed up my old Iphone 4, but were not able to get anything to load back onto my new phone. So, I lost pretty much everything. But over time, some of my contacts have started showing up, although i am still missing over 800 of them.

  • My iphone will not ring with an incoming call or an incoming text

    My iphone will not ring with an incoming call or an incoming text

    Hello tmacmillin,
    Thank you for the question.  It sounds like there is no sound with an incoming phone call or text.  Have you checked to see if Do Not Disturb was accidentally enabled?  You will see a "moon" icon in the status bar if it is enabled.
    You can disable Do Not Disturb in Settings > Do Not Disturb or in the Control Center as described in the following articles:
    iOS: Using Do Not Disturb
    http://support.apple.com/kb/HT5463
    iOS: Understanding Control Center
    http://support.apple.com/kb/HT5858
    If you are not hearing any sound from your speakers, I suggest reviewing the following article:
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/ts5180
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Differences between VBAP and S605 (MCSI) - based on incoming orders

    Hi experts,
    I have a question about the differences between the table vbap and S605 (MCSI) based on incoming orders.
    In my case, I display an customer order (VA03) with two order items. Both order items were created last month (10.01.2013).  
    By way of example:
    order item 10: 10.000 EUR net value
    order item 20: 15.000 EUR net value
    When I execute the transaction MCSI (InfoStructure S605), the relevant sold-to party generates an incoming order in amount of 10.000 EUR in the period 01.2013. So, order item 20 are not generates an incoming order. What ever it is.  
    If I display the table VBAP, both order items (10 and 20) are existent with the net values (10.000 EUR and 15.000 EUR) and the create date 10.01.2013.
    By the way, the order item 20 has not an reason for rejection.
    Did anybody already had this kind of problem?
    Thanks in advance and best regards
    Michael

    Hi Michael,
    We are talking about a customer SIS (605 is in the customer range name and MCSI is for running customer SIS). For checking it, I suggest some ideas:
    1. Check how this SIS is populating S605. Run tcode MCVR for this SO and check the logs.
    2. Read carefully this notes and consider them as a checklist:
         Note 174141 - SIS: Collective note - Customizing
         Note 204130 - SIS update: Collective note
         Note 174134 - SIS: Collective note - reorganization
    3. Check the values of STAFO in SO tables (VBAK, VBAP,..)
    4. Check the updating of S605 with tcode MC26 and check if there are formulas or requirements for the key figures.
    I hope this helps you
    Regards
    Eduardo
    PD: I forgot this detail: Check the logs for the update of SIS/LIS in production system. Check also SAP Note 1002904 - Analysis of TMC2P, TMC2Q and TMC2F
    Message was edited by: Eduardo Hinojosa

  • Triggering outgoing TTL pulse based on incoming position signal

    Hello all,  
    For my research study looking at reflex responses in human subjects, I have the subject's ankle attached to a motor that moves the joint back and forth through a 30 degree range. I am sending a 5-V TTL pulse from a NI BNC-2090A to a constant current stimulator (Digitimer DS7A) each time the ankle passes a specific angle. I want one pulse sent out each time the ankle passes the target angle. The VI works fairly well, but it does not fire at the exact target I set 100% of the time (sometimes off by a degree or so). We are sampling at 2000 Hz, reading 100 scans per channel with the DAQmx Read.vi. The median of the position signal is constantly being evaluated and sent to the In Range and Coerce function, the output of which is sent to a Case Structure. The min and max inputs to the In Range function are set at what I have found to be the ideal parameters (translates to roughly + or - 0.5 degrees). If I set them any narrower, the pulse is not always sent out. 
    I've attached what I believe are the relevant parts of code. If anyone has any ideas of how I can make this vi run more smoothly and accurately, it would be much appreciated. Thanks in advance.  
    Attachments:
    Trigger outgoing pulse based on position.vi ‏58 KB

    Triggering with the DAQ card:
    The 6229 unfortunately doesn't support analog triggering.  Comparable cards which do are the 625x or 635x (also the more expensive 628x and 636x).  On such cards there is an Analog Window Triggering feature that would produce the exact signal I think you are looking for (see X Series user manual).  So if you have one of these handy or are looking to acquire new hardware then this would be a good solution.
    Software detection for trigger signal:
    If you want to continue using the 6229, see if something like the following would give what you want.  Keeping the loop simple might help make this approach usable for your application depending on how long the window is you are looking for.  It still isn't as reliable as a hardware-triggered approach.
    External circuitry:
    The simplest external comaprator circuit would just consist of an op-amp.  You could use the analog output to set the threshold.  The comparator output could trigger a counter output which would issue a pulse of some pre-defined width.  The issue here is that the output signal would not be high during your exact window, but rather a fixed amount of time starting at the beginning of your window (so if the speed is changing it might not be what you are looking for). 
    You could in theory just build your own external circuit to generate the exact window trigger as well at which point you wouldn't need to output anything from the DAQ card (except for perhaps control voltages for this circuit).  If you're at a university perhaps you could look for a EE student that you might be able to contract the work out to?
    Best Regards,
    John Passiak

  • Outbound FXO calls based on Signal detection

    Hi Team,
    FXO and outbound calls while the line not connected to the FXO port, is there a way to do signal detection so the call will jump to the next fxo port

    For outbound call hunting you can use Trunk groups. You can assign multiple fxo ports to the trunk group and assign them priorty etc. From your dial-peer reference the trunk group and it will hunt the available line.
    Refer to: http://www.cisco.com/en/US/docs/ios/12_3/vvf_r/vrg_t1_ps1839_TSD_Products_Command_Reference_Chapter.html#wp1491022
    Also Refer: https://supportforums.cisco.com/discussion/12056631/need-sample-cme-multiple-fxo-ports-hunt-fashion
    -Terry
    Please rate all helpful posts and mark thread as answered if you have no other queries.

  • Cannot make calls (outgoing or incoming)

           I'm sorry for reposting this but In the original discussion , I accidentally marked one of the answers as correct and I don't know how much that affects someone taking another look at the discussion.
    I have a problem with calls going through to the sip provider as g729 whereas they now require g711alaw. I cannot make outbound calls. I configured the uc540w via CCA and though I specified g711alaw In the sip trunk , It didn't work.
    I tried adding g711alaw to one of the dial-peers to see If  that would make a change.In doing so , I can no longer make any Incoming calls to any extensions.I removed the configuration but It hasn't changed anything.I have no idea what I've done.
    I ran a debug ccsip message and am receiving Warning: 304 "Media Type(s) Unavailable"  q.805 error=65.
    I would really appreciate any assistance.I've attached the ccsip message debug and the running config.

    debug dialpeer output:
    000459: Feb 12 14:52:46.479: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersCore:
       Calling Number=25251000, Called Number=25251000, Peer Info Type=DIALPEER_INFO_SPEECH
    000460: Feb 12 14:52:46.479: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=25251000
    000461: Feb 12 14:52:46.479: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersCore:
       No Outgoing Dial-peer Is Matched; Result=NO_MATCH(-1)
    000462: Feb 12 14:52:46.479: //-1/xxxxxxxxxxxx/DPM/dpMatchSafModulePlugin:
       dialstring=25251000, saf_enabled=1, saf_dndb_lookup=1, dp_result=-1
    000463: Feb 12 14:52:46.479: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersMoreArg:
       Result=NO_MATCH(-1)
    000464: Feb 12 14:52:46.479: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Calling Number=35314403500, Called Number=, Voice-Interface=0x0,
       Timeout=TRUE, Peer Encap Type=ENCAP_VOIP, Peer Search Type=PEER_TYPE_VOICE,
       Peer Info Type=DIALPEER_INFO_SPEECH
    000465: Feb 12 14:52:46.479: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Result=NO_MATCH(-1) After All Match Rules Attempt
    000466: Feb 12 14:52:46.479: //-1/xxxxxxxxxxxx/DPM/dpMatchSafModulePlugin:
       dialstring=NULL, saf_enabled=0, saf_dndb_lookup=0, dp_result=-1
    000467: Feb 12 14:52:46.483: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Calling Number=35314403500, Called Number=, Voice-Interface=0x0,
       Timeout=TRUE, Peer Encap Type=ENCAP_VOIP, Peer Search Type=PEER_TYPE_VOICE,
       Peer Info Type=DIALPEER_INFO_SPEECH
    000468: Feb 12 14:52:46.483: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Result=NO_MATCH(-1) After All Match Rules Attempt
    000469: Feb 12 14:52:46.483: //-1/xxxxxxxxxxxx/DPM/dpMatchSafModulePlugin:
       dialstring=NULL, saf_enabled=0, saf_dndb_lookup=0, dp_result=-1
    000470: Feb 12 14:52:46.483: //-1/67B7E54F8278/DPM/dpAssociateIncomingPeerCore:
       Calling Number=35314403500, Called Number=25251000, Voice-Interface=0x0,
       Timeout=TRUE, Peer Encap Type=ENCAP_VOIP, Peer Search Type=PEER_TYPE_VOICE,
       Peer Info Type=DIALPEER_INFO_SPEECH
    000471: Feb 12 14:52:46.483: //-1/67B7E54F8278/DPM/dpAssociateIncomingPeerCore:
       Result=Success(0) after DP_MATCH_INCOMING_DNIS; Incoming Dial-peer=3013
    000472: Feb 12 14:52:46.483: //-1/67B7E54F8278/DPM/dpMatchSafModulePlugin:
       dialstring=NULL, saf_enabled=0, saf_dndb_lookup=0, dp_result=0
    000473: Feb 12 14:52:50.307: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersCore:
       Calling Number=25251000, Called Number=25251000, Peer Info Type=DIALPEER_INFO_SPEECH
    000474: Feb 12 14:52:50.307: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=25251000
    000475: Feb 12 14:52:50.307: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersCore:
       No Outgoing Dial-peer Is Matched; Result=NO_MATCH(-1)
    000476: Feb 12 14:52:50.307: //-1/xxxxxxxxxxxx/DPM/dpMatchSafModulePlugin:
       dialstring=25251000, saf_enabled=1, saf_dndb_lookup=1, dp_result=-1
    000477: Feb 12 14:52:50.307: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersMoreArg:
       Result=NO_MATCH(-1)
    000478: Feb 12 14:52:50.307: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Calling Number=99477241, Called Number=, Voice-Interface=0x0,
       Timeout=TRUE, Peer Encap Type=ENCAP_VOIP, Peer Search Type=PEER_TYPE_VOICE,
       Peer Info Type=DIALPEER_INFO_SPEECH
    000479: Feb 12 14:52:50.307: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Result=Success(0) after DP_MATCH_ORIGINATE; Incoming Dial-peer=1040
    000480: Feb 12 14:52:50.307: //-1/xxxxxxxxxxxx/DPM/dpMatchSafModulePlugin:
       dialstring=NULL, saf_enabled=0, saf_dndb_lookup=0, dp_result=0
    000481: Feb 12 14:52:50.311: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Calling Number=99477241, Called Number=, Voice-Interface=0x0,
       Timeout=TRUE, Peer Encap Type=ENCAP_VOIP, Peer Search Type=PEER_TYPE_VOICE,
       Peer Info Type=DIALPEER_INFO_SPEECH
    000482: Feb 12 14:52:50.311: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Result=Success(0) after DP_MATCH_ORIGINATE; Incoming Dial-peer=1040
    000483: Feb 12 14:52:50.311: //-1/xxxxxxxxxxxx/DPM/dpMatchSafModulePlugin:
       dialstring=NULL, saf_enabled=0, saf_dndb_lookup=0, dp_result=0
    000484: Feb 12 14:52:50.311: //-1/6A000105827C/DPM/dpAssociateIncomingPeerCore:
       Calling Number=99477241, Called Number=25251000, Voice-Interface=0x0,
       Timeout=TRUE, Peer Encap Type=ENCAP_VOIP, Peer Search Type=PEER_TYPE_VOICE,
       Peer Info Type=DIALPEER_INFO_SPEECH
    000485: Feb 12 14:52:50.311: //-1/6A000105827C/DPM/dpAssociateIncomingPeerCore:
       Result=Success(0) after DP_MATCH_INCOMING_DNIS; Incoming Dial-peer=3013
    000486: Feb 12 14:52:50.311: //-1/6A000105827C/DPM/dpMatchSafModulePlugin:
       dialstring=NULL, saf_enabled=0, saf_dndb_lookup=0, dp_result=0
    Incoming dial-peers matched are 3013 and 1040 but no codec are configured:
    dial-peer voice 3013 voip
    description AA-AA
    translation-profile incoming AA-AA_Called_18
    session protocol sipv2
    session target sip-server
    incoming called-number 25251000
    voice-class sip dtmf-relay force rtp-nte
    dtmf-relay rtp-nte
    ip qos dscp cs5 media
    ip qos dscp cs4 signaling
    no vad
    dial-peer voice 1040 voip
    description **CCA*cyprus*Mobiles**
    translation-profile outgoing PSTN_Outgoing
    preference 1
    destination-pattern 99T
    session protocol sipv2
    session target sip-server
    voice-class sip dtmf-relay force rtp-nte
    dtmf-relay rtp-nte
    ip qos dscp cs5 media
    ip qos dscp cs4 signaling
    no vad
    Please add codec or voice-class codec command.
    BR

  • Caller ID for incoming calls NOT displaying name from contacts (only displays phone # on BB Z10)

    on the Z10 Whenever I receive an incoming call, the caller ID only shows the phone #, even when I have that number matched to a contact in the phone, even the call log it show the number and not the name.  How do I get the caller ID to recognize and display the appropriate contact name with the phone fro an incoming call? Any help would be greatly appreciated!  Thanks, Akhanbilal

    Thank you Arsen but, as with everyone else : (1) When you get an in-coming call, it has no call log on the phone app call log that allows you do a thing under the sun except to touch the number of the last call, and when you do, it CALLS THEM BACK. (2) On every other BlackBerry I have owned, about 10 to-date, I simply selected the last in-coming call and had a button at the bottom of the screen to allow me to ADD TO CONTACTS. (3) This does NOT exist on the Z10, and there certainly is no "Click on number, little slider pops on the right, select add to contact."  Instead it dials them.  Frustrating other uses have described Arsen. Further, while on the topic : (4) None of this has anything to do with 10-digit national dialing plan or anything else on swipe finger down from top in Phone App, Arsen. (5) When you swipe Phone App down, you see SETTINGS. Then, there are 13 items.  I have looked at all 13 items and see nothing as you describe to select, nor any instructions on what to set the SMART DIALING to when there are 3 area codes local for my city and country code shows +1. Further, while on topic here : (6) Visual Voice Mail has been turned-on and whatever visual voice mail is, never supported on any previous BlackBerry including my 9780 before this, I have it with T-Mobile and have it turned on on the BlackBerry Z10 and it too does not work.  On the positive side, I do have a work-around for BlackBerry Z10 to 2013 Toyota entune. (7) I first took a vm msg .wav file of just hello (blank will not send) and saved it on BlackBerry Z10.  The Toyota entune is LOOKING for a music and will LOCK-UP if none are found.  By giving it this, it worked on my 2013 Toyota entune for the 1st time ever.  Yeah !  It is a little frustrating every few minutes listening to myself say HELLO.  But, hey no one really notices it with all the other stuff going on NAVIGATION, radio, cell phone calls, and all the computerized alerts on 2013 Toyota even without entune. (8) What I did now was to go into Navigation and remove SYNC with MUSIC.  I accomplished that after pairing to Z10 to 2013 Toyota, by CANCELLING ALL CONNECTIONS leaving only the pairing itself.  Then, you must choose some connections in the pairing section of SET-UP within Navigation itself.  If you cannot even get to that point, try depressing on the Navigation Screen, INTERNET at which point it will allow you access to SET-UP when you see the message NO ENTUNE APP FOUND ON YOUR BlackBerry Z10.  Red-headed step-child is what we all are.  Have to help each other.  Arsen I appeciate you helping all of us.  Seems the list is about 20 who have voiced it here in this one thread.  We voice it for the 200 million BlackBerry users worldwide, all left out in the cold despite a pretty cool Z10 product. Far better than iPhone 5.  I chose phone and internet.  Internet comes back no BLACKBERRY Z10 TOYOTA ENTUNE APP.  But, at least now I don't have to hear the music HELLO and do not also have the BlackBerry Z10 LOCKED-UP with pop up message you have to say OK to 10 million times to clear and never can actually do a thing on the BlackBerry Z10 as  a result.  Cannot add an in-coming call to Contacts Z10. Cannot see name and number calling me, just the bloody number, no clue who is calling ridiculous. Cannot do diddle-e-squat on BlackBerry Z10 on Toyota entune.  No App.  Horrendous. TAGS : Z10 no caller-id name, Z10 no app Toyota 2013 entune, Z10 add call to Contacts

Maybe you are looking for