Partial-Match Filter

How to implement Partial - Match filter in Project siena 

Hi Gyan,
You want to use the In function.
For example, if you create a InputText called Text1 and have a Table or Collection called Systems, and you have a field in Systems called SystemFamily you would use:
Filter(Systems, Text1!Text in SystemFamily)
that will filter the Systems Table based off finding a partial match of Text1 in the SystemFamily.
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This is beneficial to other community members reading the thread.
-Bruton

Similar Messages

  • How do you search for a partial match in a vector table?

    Hi,
    I have a program that parses some table of mine into a vector table. It has a search function in the program that is intended to search the vector table for a specified keyword that the user enters. If a match is found, it returns true. If no match is found, false is returned.
    That part works great. However, I would like my program to search the vector table to try and find a PARTIAL match of the users entry, instead of looking for a complete match.
    Currently my program uses the Vector method 'contains(Object elem)' to find the complete matches and that part works great. It doesn't seem to work with partial matches. Either the exact syntax of the user's entry is in the table or it isn't.
    Hope I was clear enough. Any thoughts?
    Cheers,
    the sherlock

    You might find this code of interest. It uses the same commands as mentioned previously, but wraps them into a Comparator object. Note that you can't store elements with '*' in the Vector 'v' and that you must sort the elements with Collections.sort() beforehand.
    import java.util.*;
    class WildcardComparator implements Comparator
        public int compare(Object o1, Object o2)
         String string1 = (String)o1;
         String string2 = (String)o2;
         if(string2.indexOf("*") != -1) {
             // take off asterik
             return wildcardCompare(string1,
                           string2.substring(0, string2.length()-1));
         return string1.compareTo(string2);
        public int wildcardCompare(String s1, String key_s) {
         String s1substring = s1.substring(0, key_s.length());
         return s1substring.compareTo(key_s);
    public class wildcard
        public static void main(String[] args)
         Vector v = new Vector();
         v.add("coke");
         v.add("pepsi");
         v.add("7-up");
         v.add("a&w root beer");
         v.add("a&w cream");
         Collections.sort(v, new WildcardComparator());
         String key = "a&w*";
         int index = Collections.binarySearch(v,
                                  key,
                                  new WildcardComparator());
         if(index > 0)
             System.out.println("elem: " + v.get(index));
         else
             System.out.println("item not found");
         key = "c*";
         index = Collections.binarySearch(v,
                                  key,
                                  new WildcardComparator());
         if(index > 0)
             System.out.println("elem: " + v.get(index));
         else
             System.out.println("item not found");
    }

  • Matching Filter within Integration Profile

    I am trying to modify my 'Connected Directory Matching Filter' so that only users are pulled, and all groups (except for a few) are ignored. I am pulling from Active Directory into OID.
    This is the string I tried for ignoring computers and groups, but groups still pass thru (not sure about computers)
    "searchfilter=(|((objectclass=user)(!(objectclass=computer)(objectclass=group))))"
    Can anyone help with this? Or point me to a reference/examples for RFC-1558 that work within the Matching Filter. I assume its using the LDAP search filter syntax.
    Version of OID : 10.1.2.0.0 on RH 3
    Windows 2003 Server AD
    Thanks,
    Chris

    use searchfilter=(objectclass=user) if you only want users coming from AD to OID.
    use searchfilter=(objectclass=group) if you only want groups coming from AD to OID.
    If you want to put users in Users contaier and Groups on Groups containr you´ll have to create 2 Import Profiles.
    Hope this can help you!

  • OpenLDAP: does not match filter

    Hi,
    we are using Deltek timeentry running on WebLogic and want to authenticate the users against out openLDAP server. (We already successfully authenticate two other groups of users against AD)
    Now we created a third authenticator to the configuration using "OpenLDAPAuthenticator" and set the parameters accordingly.
    In the log file of the LDAP-server we could see, that the principal can successfully bind to the server and tries to search for the user that is logging in.
    But when searching for the user it uses the following filter:
       (&(&(objectClass=posixAccount)(uid=foobar))(?=error))
    which in the end results in:
       bdb_search: 548 does not match filte
    In the authenticator setup we only entered:
       (&(objectClass=posixAccount)(uid=%u)
    Where does the "(?=error)" come from - it seems, that this is causing the "does not match filter" ...
    Any hint appreciated!
    Thanks,
    Thomas
    P.S.: I'm completely new to WebLogic - so this post might lack some needed informations ;-)

    hi all,
    while deploying the application i am getting this excepiton.
    Exception:weblogic.management.ApplicationException: prepare failed for decevalweblogic.jar Module: decevalweblogic.jar Error: Exception preparing module: EJBModule(decevalweblogic.jar,status=NEW) Unable to deploy EJB: C:\beaweblogic\weblogic81\samples\domains\examples\.\examplesServer\.wlnotdelete\deceval\decevalweblogic.jar from decevalweblogic.jar: weblogic.ejb20.deployer.DeploymentDescriptorException: Unable to load a class specified in your ejb-jar.xml: Class bytes found but defineClass()failed for: 'com.deceval.siidj.siidserver.ParametrosObj' at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.initializeBeanInfos(MBeanDeploymentInfoImpl.java:550) at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.<init>(MBeanDeploymentInfoImpl.java:232) at weblogic.ejb20.deployer.EJBDeployer.prepare(EJBDeployer.java:1302) at weblogic.ejb20.deployer.EJBModule.prepare(EJBModule.java:498) at weblogic.j2ee.J2EEApplicationContainer.prepareModule(J2EEApplicationContainer.java:3101) at weblogic.j2ee.J2EEApplicationContainer.prepareModules(J2EEApplicationContainer.java:1560) at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1208) at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1051) at weblogic.management.deploy.slave.SlaveDeployer$ComponentActivateTask.prepareContainer(SlaveDeployer.java:2444) at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2394) at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2310) at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:866) at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:594) at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:508) at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25) at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    * [Deployer:149033]preparing application deceval on examplesServer
    * [Deployer:149033]failed application deceval on examplesServer
    * [Deployer:149034]An exception occurred for task [Deployer:149026]Deploy application deceval on examplesServer.: Exception:weblogic.management.ApplicationException: prepare failed for decevalweblogic.jar Module: decevalweblogic.jar Error: Exception preparing module: EJBModule(decevalweblogic.jar,status=NEW) Unable to deploy EJB: C:\beaweblogic\weblogic81\samples\domains\examples\.\examplesServer\.wlnotdelete\deceval\decevalweblogic.jar from decevalweblogic.jar: weblogic.ejb20.deployer.DeploymentDescriptorException: Unable to load a class specified in your ejb-jar.xml: Class bytes found but defineClass()failed for: 'com.deceval.siidj.siidserver.ParametrosObj' at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.initializeBeanInfos(MBeanDeploymentInfoImpl.java:550) at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.<init>(MBeanDeploymentInfoImpl.java:232) at weblogic.ejb20.deployer.EJBDeployer.prepare(EJBDeployer.java:1302) at weblogic.ejb20.deployer.EJBModule.prepare(EJBModule.java:498) at weblogic.j2ee.J2EEApplicationContainer.prepareModule(J2EEApplicationContainer.java:3101) at weblogic.j2ee.J2EEApplicationContainer.prepareModules(J2EEApplicationContainer.java:1560) at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1208) at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1051) at weblogic.management.deploy.slave.SlaveDeployer$ComponentActivateTask.prepareContainer(SlaveDeployer.java:2444) at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2394) at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2310) at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:866) at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:594) at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:508) at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25) at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178) .
    please help me
    thanks in advance
    krishna

  • Partial match for Value Mapping in Import Manager

    Hello Experts,
    We have a import map which is used to do mass insert of data into the main table. This is done as & when required by the end user.
    We have a qualified lookup field which has a flat lookup filed as the Non-Qualifier. This flat lookup field is refering to a Lookup Flat table, which has mulitple dispay fields like Code,Name, Status etc. (14 fields in total) where as only the Code is the unique field.
    We have only the unique field in our source file which we use for the import. Since we have only a part of the display fields in the source, the automap functionality in the Value maping section doesn't work. It becomes very tedious for the user to manually map all the values for this field.
    Is there any way by which we can convert the source or target values in the import map, so that we can map the values using the Automap feature?
    Your help & suggestion for alternate approach is highly appreciated.
    Thanks in advance.
    Regards,
    Uday
    P.S. We are using SAP MDM 5.5 SP6.

    Hi Uday,
    No need to enable remote key mapping for QLT. Please execute the below steps(stated with an example) -
    1.  Among all the fields in the referenced lookup table, identify the lookup fields and the tables they are looking up .
    For eg.If you have a lookup field as 'Country' as one of the fields, look up table will be 'Countries'
    2.For the identified lookup tables, set 'key mapping =Yes' in Console.
    For eg, For Country Lookup table ,set Key mapping to 'Yes'
    3.Import values into Lookup table (Import manager)/ Remote key update -
    In import manager, select source (local file) and destination as Countries flat table.This Table will be haing 2fields - Code and description.Clone the 'Code'field and map it to Remote key field in destination hierarchy.Map code and description to equivalent destination fields. Select 'Code' as matching field > Perform import into lookup table.
    Check if the records in countries table are updated with remote keys(in Data manager> right click on a record> select 'Edit key mappings' > view key mapping for the record)
    3.Import to Qualified table/Auto value mapping -
    Now, in the import map for qualified import , map the source field and destination field (of lookup type), all the values of this field will automatically map.
    Similarly, refresh remote keys mappings for all the lookup tables first and then you can see auto mappings of values happening for the lookup fields.
    Regards,
    Vinay M.S

  • How can I search for partial matching words in various columns without needing to provide search text?

    I have a list of names in three columns - B2:B425, D2:406, & E2:30 where they were input by different people, so the names are worded differently. For example, I can have the name "Handler, Jones, & Wright" and someone else has the name
    listed as "Handler Corp." What I need is to find a formula or VBA macro code that can search through my list and notice the possible duplicates and highlight them. Since they are all different names, I cannot give it a unique "text" to
    search.
    I found a code posted in this forum from some time ago (for two columns) but it highlighted all these names that had no partial words in common. Perhaps you can look over the code below and modify it for me or provide me with another one? Please let me know
    if you need any further information to guide me. 
    Sub HighlightDups()
        Dim rg1 As Range, rg2 As Range, c As Range, d As Range
        Dim sTemp As String, sTempWords() As String, sTempDWords() As String
        Dim re As Object, mc As Object
        Dim i As Long, j As Long
        Dim sFirstAddress As String
    Set rg1 = Range("B2", Cells(Rows.Columns.Count, "B").End(xlUp))
    Set rg2 = Range("D2", Cells(Rows.Columns.Count, "D").End(xlUp))
    Set re = CreateObject("vbscript.regexp")
        re.Global = True
        re.ignorecase = True
    With Range(rg1, rg2)
        .Font.Color = vbBlack
        .Font.Bold = False
        .Interior.Color = xlNone
        .FormatConditions.Delete
    End With
    For Each c In rg1
      re.Pattern = "\b\w+\b"
      If re.test(c.Text) = True Then
        Set mc = re.Execute(c.Text)
            ReDim sTempWords(0 To mc.Count - 1)
            For i = 0 To UBound(sTempWords)
                sTempWords(i) = mc(i)
            Next i
        For i = 0 To UBound(sTempWords)
            Set d = rg2.Find(What:=sTempWords(i), _
                             LookIn:=xlValues, _
                             LookAt:=xlPart, _
                             MatchCase:=False)
            If Not d Is Nothing Then
                re.Pattern = "\b" & sTempWords(i) & "\b"
                sFirstAddress = d.Address
                Do
                        If re.test(d.Text) Then
                    With c
                        .Font.Color = vbWhite
                        .Font.Bold = True
                        .Interior.Color = vbBlue
                    End With
                    With d
                        .Font.Color = vbWhite
                        .Font.Bold = True
                        .Interior.Color = vbBlue
                    End With
                        End If
                    Set d = rg2.FindNext(after:=d)
                    Loop While Not d Is Nothing And d.Address <> sFirstAddress
            End If
        Next i
      End If
    Next c
    Set re = Nothing
    End Sub
     

    Programming/Code related questions should really be posed in one of the following forums
    Excel for Developers
    http://social.msdn.microsoft.com/Forums/en-US/exceldev
    Microsoft Office Programming
    http://answers.microsoft.com/en-us/office/forum/customize?page=1&tab=all&tm=1361680524815
    Tony Chen
    TechNet Community Support

  • How to use XRANK operator for partial match comaprison?

    Hi All,
    I am aware how to use the XRANK operator to boost a result if a managed property equals a specific value.
    XRANK(cb=400) importance:'1'
    How would I make a key word query using XRANK which will boost a result if the managed property contains a part or whole of a term as indicated in the pseudo code below?
    XRANK(cb=400) language:'*en*'
    In this scenario, I would like all results where language contains  the phrase 'en' to be boosted. I wonder if this is possible at all.
    thanks,
    Saurabh
    sdg

    Hi,
    Keyword Query Language does not support suffix matching.  So, in the above scenario it might not be possible.
    Please refer to the technet article.
    Keyword Query Language (KQL) syntax reference
    Please mark it answered if your problem resolved or helpful.

  • Itunes match only partially matches album

    happens again an again - today with new pink album. It imports, but not all songs match so that some of them get uploaded instead of matched.
    How can I fix this?

    Brij011 wrote:
    That defeats the object, one of the main benefits of iTunes match is that it's meant to upgrade lower quality tracks to 256 kbps.
    Actually, that's not the main object of iTunes Match from Apple's persective. I know the OP doesn't want AAC files because his car audio system only supports MP3 CDs, so my solution offers a better option for him to get the album fully matched. The OP has the MP3 files on his computer to burn to MP3 CD for his car audio player, and he (hopefully) also gets the album "matched" at 256 Kbps AAC for playing on his other devices.

  • Email subject filter

    I'm having trouble getting the email subject filter to work.  I am currently using redirector on my work laptop to push email to my Blackberry handset.  I am trying to build a subject filter that looks for one word in the subject line and does not forward the email if that word is found anywhere in the subject. 
    For example, I select the subject filter and enter the word 'NEON'.  Next, I move this filter to the top of my filter list.  When an email arrives on my desktop with a subject of 'NEON 123' or 'NEON 234' or 'NEON 1: Alert', I would like it to be filtered and not forwarded to my handset.  Finally, I select the check box that says 'Forward messages to the device' when no filters apply.  Essentially, I am hoping the subject filter works with a partial match.  However, this does not appear to be the behavior.
    Additionally, I've tried using * as a wildcard, but that doesn't appear to work either.  Any assistance is greatly appreciated.

    Hi and Welcome to the Forums!
    Perhaps these instructions will help:
    KB05095 How to configure email message filters
    Since you are using redirector, there might be a play based on the email server you are working off of...can you tell us what that is? (e.g., Exchange, Notes, etc.).
    Thanks!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Dial-Peer matches but fails to call out

    Hello,
    Am trying to get my CME configured for Callcentric.  I have both an inbound and an outbound plan.
    With my dial-peers configured for standard 11-digit and 10-digit dialing, calls go to fast busy after all digits except the last two are dialed.  Debug shows a dial-peer match initially, then states no match and the call fails.  If I change the destination pattern to match my cell phone number exactly, I can dial all the digits but the call still fails.  Anyone have a suggestion?
    Here are my dial peers:
    dial-peer voice 700 voip
    description SIP Trunk - Incoming
    voice-class sip dtmf-relay force rtp-nte
    session protocol sipv2
    session target dns:callcentric.com
    incoming called-number .%
    dial-peer voice 701 voip
    description SIP Trunk - Outgoing 3-Digit Calls
    translation-profile outgoing SIP_1
    preference 1
    destination-pattern 9[2-8]11
    voice-class codec 1
    voice-class sip dtmf-relay force rtp-nte
    session protocol sipv2
    session target sip-server
    dtmf-relay rtp-nte
    dial-peer voice 702 voip
    description SIP Trunk - Outgoing 11-Digit Calls
    translation-profile outgoing SIP_1
    preference 1
    destination-pattern 91[2-9].......
    voice-class sip dtmf-relay force rtp-nte
    session protocol sipv2
    session target sip-server
    dtmf-relay rtp-nte
    dial-peer voice 703 voip
    description SIP Trunk - Outgoing 10-Digit Calls
    translation-profile outgoing SIP_1
    preference 1
    destination-pattern 9[2-9].......
    voice-class codec 1
    voice-class sip dtmf-relay force rtp-nte
    session protocol sipv2
    session target sip-server
    no vad
    And here is the debug associated with a call:
    *Dec 26 22:26:27.854: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Calling Number=7018, Called Number=, Voice-Interface=0x4A4AE7B0,
       Timeout=TRUE, Peer Encap Type=ENCAP_VOICE, Peer Search Type=PEER_TYPE_VOICE,
       Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:27.854: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Result=Success(0) after DP_MATCH_ORIGINATE; Incoming Dial-peer=20009
    GMIT-VOICEROUTER01#
    *Dec 26 22:26:29.526: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=9, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:29.526: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=9
    *Dec 26 22:26:29.526: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Partial Matches(1) after DP_MATCH_DEST
    *Dec 26 22:26:29.526: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=MORE_DIGITS_NEEDED(1)
    *Dec 26 22:26:29.914: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=91, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:29.914: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=91
    *Dec 26 22:26:29.914: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Partial Matches(1) after DP_MATCH_DEST
    *Dec 26 22:26:29.914: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=MORE_DIGITS_NEEDED(1)
    *Dec 26 22:26:30.174: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Numbe
    GMIT-VOICEROUTr=, Called Number=912, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:30.174: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=912
    *Dec 26 22:26:30.174: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Partial Matches(1) after DP_MATCH_DEST
    *Dec 26 22:26:30.174: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=MORE_DIGITS_NEEDED(1)
    *Dec 26 22:26:30.514: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=9120, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:30.514: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=9120
    *Dec 26 22:26:30.514: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Partial Matches(1) after DP_MATCH_DEST
    *Dec 26 22:26:30.514: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=MORE_DIGITS_NEEDED(1)
    *Dec 26 22:26:30.822: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=91207, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:30.822: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=91207
    *Dec 26 22:26:30.826: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Partial Matches(1) after DP_MATCH_DEST
    *Dec 26 22:26:30.826: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=MORE_DIGITS_NEEDED(1)
    *Dec 26 22:26:31.342: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=912072, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:31.342: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=912072
    *Dec 26 22:26:31.346: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Partial Matches(1) after DP_MATCH_DEST
    *Dec 26 22:26:31.346: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=MORE_DIGITS_NEEDED(1)
    *Dec 26 22:26:31.542: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=9120722, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:31.546: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=9120722
    *Dec 26 22:26:31.546: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Partial Matches(1) after DP_MATCH_DEST
    *Dec 26 22:26:31.546: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=MORE_DIGITS_NEEDED(1)
    *Dec 26 22:26:31.934: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=91207227, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:31.934: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=91207227
    *Dec 26 22:26:31.934: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Partial Matches(1) after DP_MATCH_DEST
    *Dec 26 22:26:31.934: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=MORE_DIGITS_NEEDED(1)
    *Dec 26 22:26:32.602: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=912072277, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:32.602: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=912072277
    *Dec 26 22:26:32.602: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Partial Matches(1) after DP_MATCH_DEST
    *Dec 26 22:26:32.606: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=MORE_DIGITS_NEEDED(1)
    *Dec 26 22:26:33.382: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=9120722776, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:33.382: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=9120722776
    *Dec 26 22:26:33.382: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Success(0) after DP_MATCH_DEST
    *Dec 26 22:26:33.386: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=SUCCESS(0)
       List of Matched Outgoing Dial-peer(s):
         1: Dial-peer Tag=702
    *Dec 26 22:26:33.386: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=9120722776, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:33.386: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=9120722776
    *Dec 26 22:26:33.386: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Success(0) after DP_MATCH_DEST
    *Dec 26 22:26:33.386: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=SUCCESS(0)
       List of Matched Outgoing Dial-peer(s):
         1: Dial-peer Tag=702
    *Dec 26 22:26:33.386: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=9120722776, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:33.386: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=9120722776
    *Dec 26 22:26:33.386: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Success(0) after DP_MATCH_DEST
    *Dec 26 22:26:33.386: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=SUCCESS(0)
       List of Matched Outgoing Dial-peer(s):
         1: Dial-peer Tag=702
    *Dec 26 22:26:33.390: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersCore:
       Calling Number=9120722776, Called Number=9120722776, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:33.390: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=9120722776
    *Dec 26 22:26:33.390: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersCore:
       Result=Success(0) after DP_MATCH_DEST
    *Dec 26 22:26:33.390: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersMoreArg:
       Result=SUCCESS(0)
       List of Matched Outgoing Dial-peer(s):
         1: Dial-peer Tag=702
    *Dec 26 22:26:33.390: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Calling Number=, Called Number=, Voice-Interface=0x0,
       Timeout=TRUE, Peer Encap Type=ENCAP_VOIP, Peer Search Type=PEER_TYPE_VOICE,
       Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:33.390: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Result=NO_MATCH(-1) After All Match Rules Attempt
    *Dec 26 22:26:33.390: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Calling Number=9120722776, Called Number=, Voice-Interface=0x0,
       Timeout=TRUE, Peer Encap Type=ENCAP_VOIP, Peer Search Type=PEER_TYPE_VOICE,
       Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:33.390: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Result=Success(0) after DP_MATCH_ORIGINATE; Incoming Dial-peer=702
    *Dec 26 22:26:33.390: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=9120722776, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:33.390: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=9120722776
    *Dec 26 22:26:33.390: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersCore:
       Result=Success(0) after DP_MATCH_DEST
    *Dec 26 22:26:33.390: //-1/xxxxxxxxxxxx/DPM/dpMatchPeersMoreArg:
       Result=SUCCESS(0)
       List of Matched Outgoing Dial-peer(s):
         1: Dial-peer Tag=702
    *Dec 26 22:26:33.394: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Calling Number=, Called Number=9120722776, Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:33.394: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Match Rule=DP_MATCH_DEST; Called Number=9120722776
    *Dec 26 22:26:33.394: //-1/98A189FD81D3/DPM/dpMatchPeersCore:
       Result=Success(0) after DP_MATCH_DEST
    *Dec 26 22:26:33.394: //-1/98A189FD81D3/DPM/dpMatchPeersMoreArg:
       Result=SUCCESS(0)
       List of Matched Outgoing Dial-peer(s):
         1: Dial-peer Tag=702
    *Dec 26 22:26:33.574: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Calling Number=91[2-9]......., Called Number=, Voice-Interface=0x0,
       Timeout=TRUE, Peer Encap Type=ENCAP_VOIP, Peer Search Type=PEER_TYPE_VOICE,
       Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:33.578: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Result=NO_MATCH(-1) After All Match Rules Attempt
    *Dec 26 22:26:36.374: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Calling Number=7018$, Called Number=, Voice-Interface=0x0,
       Timeout=TRUE, Peer Encap Type=ENCAP_VOIP, Peer Search Type=PEER_TYPE_VOICE,
       Peer Info Type=DIALPEER_INFO_SPEECH
    *Dec 26 22:26:36.378: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
       Result=NO_MATCH(-1) After All Match Rules AttemptER01#

    Translation profile:
    voice translation-rule 3
    rule 1 /^7../ /2072267262/
    voice translation-rule 4
    rule 1 /^9\(1....\)/ /\1/
    rule 2 /^9207\(...\)/ /\1/
    rule 3 /^9\(011.*\)/ /\1/
    rule 4 /^9\([2-9]11\)/ /\1/
    voice translation-profile SIP_1
    translate calling 3
    translate called 4
    Here is debug ccsip messages:
    *Dec 27 14:10:16.598: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    OPTIONS sip:[email protected]:5060;transport=udp SIP/2.0
    Via: SIP/2.0/UDP 207.5.178.214:5060;branch=z9hG4bKd77b793048igqgkfd0g1.1
    Allow-Events: message-summary, refer, dialog, line-seize, presence, call-info, as-feature-event
    Max-Forwards: 69
    Call-ID: SDp6vve01-196593d11e4bf68c71f8a4085d7de7d0-c54gcb0
    From: ;tag=SDp6vve01-callagent.gwi.net+1+8bfe3a+d3cf6d84
    CSeq: 938331054 OPTIONS
    Organization: MetaSwitch
    Supported: resource-priority, 100rel
    Content-Length: 0
    Contact:
    To:
    *Dec 27 14:10:16.606: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Sent:
    SIP/2.0 200 OK
    Via: SIP/2.0/UDP 207.5.178.214:5060;branch=z9hG4bKd77b793048igqgkfd0g1.1
    From: ;tag=SDp6vve01-callagent.gwi.net+1+8bfe3a+d3cf6d84
    To:
    GMIT-VOICEROUT166>;tag=F1B5120-18BD
    Date: Fri, 27 Dec 2013 14:10:16 GMT
    Call-ID: SDp6vve01-196593d11e4bf68c71f8a4085d7de7d0-c54gcb0
    Server: Cisco-SIPGateway/IOS-12.x
    CSeq: 938331054 OPTIONS
    Supported: 100rel,resource-priority,replaces,sdp-anat
    Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
    Allow-Events: telephone-event
    Accept: application/sdp
    Content-Type: application/sdp
    Content-Length: 172
    v=0
    o=CiscoSystemsSIP-GW-UserAgent 4484 7548 IN IP4 66.55.220.166
    s=SIP Call
    c=IN IP4 66.55.220.166
    t=0 0
    m=audio 0 RTP/AVP 18 0 8 9 4 2 15 3
    c=IN IP4 66.55.220.166
    ER01#
    GMIT-VOICEROUTER01#
    *Dec 27 14:10:34.834: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Sent:
    INVITE sip:[email protected]:5080 SIP/2.0
    Via: SIP/2.0/UDP 66.55.220.166:5060;branch=z9hG4bK5795232C
    From: "Server Room" [email protected]>;tag=F1B9854-8A5
    To: [email protected]>
    Date: Fri, 27 Dec 2013 14:10:34 GMT
    Call-ID: [email protected]
    Supported: 100rel,timer,resource-priority,replaces,sdp-anat
    Min-SE:  1800
    Cisco-Guid: 2066961728-1849102819-2185007278-567139419
    User-Agent: Cisco-SIPGateway/IOS-12.x
    Allow: INVITE, OPTIONS, B
    GMIT-VOICEROUTER01#YE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
    CSeq: 101 INVITE
    Max-Forwards: 70
    Timestamp: 1388153434
    Contact:
    Expires: 180
    Allow-Events: telephone-event
    Content-Type: application/sdp
    Content-Disposition: session;handling=required
    Content-Length: 297
    v=0
    o=CiscoSystemsSIP-GW-UserAgent 3022 9963 IN IP4 66.55.220.166
    s=SIP Call
    c=IN IP4 66.55.220.166
    t=0 0
    m=audio 19258 RTP/AVP 18 101 19
    c=IN IP4 66.55.220.166
    a=rtpmap:18 G729/8000
    a=fmtp:18 annexb=no
    a=rtpmap:101 telephone-event/8000
    a=fmtp:101 0-16
    a=rtpmap:19 CN/8000
    a=ptime:20
    *Dec 27 14:10:34.906: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    SIP/2.0 407 Proxy Authentication Required
    v: SIP/2.0/UDP 66.55.220.166:5060;branch=z9hG4bK5795232C
    f: "Server Room" [email protected]>;tag=F1B9854-8A5
    t: [email protected]>
    i: [email protected]
    CSeq: 1
    GMIT-VOICEROUT01 INVITE
    Proxy-Authenticate: Digest realm="callcentric.com", domain="sip:callcentric.com", nonce="3755ae79fd668c2035ebb90cdc12d030", opaque="", stale=TRUE, algorithm=MD5
    l: 0
    *Dec 27 14:10:34.914: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Sent:
    ACK sip:[email protected]:5080 SIP/2.0
    Via: SIP/2.0/UDP 66.55.220.166:5060;branch=z9hG4bK5795232C
    From: "Server Room" [email protected]>;tag=F1B9854-8A5
    To: [email protected]>
    Date: Fri, 27 Dec 2013 14:10:34 GMT
    Call-ID: [email protected]
    Max-Forwards: 70
    CSeq: 101 ACK
    Allow-Events: telephone-event
    Content-Length: 0
    *Dec 27 14:10:34.914: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Sent:
    INVITE sip:[email protected]:5080 SIP/2.0
    Via: SIP/2.0/UDP 66.55.220.166:5060;branch=z9hG4bK579619F9
    From: "Server Room" [email protected]>;tag=F1B9854-8A5
    To: [email protected]>
    Date: Fri, 27 Dec 2013 14:10:34 GMT
    Call-ID: [email protected]
    Supported: 100rel,timer,resource-priority,replaces,sdp-anat
    Min-SE:  1800
    Cisco-Guid: 2066961728-1849102819-2185007278-567139419
    User-Agent: Cisco-SIPGateway/IOS-12.x
    Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
    CSeq: 102 INVITE
    Max-Forwards: 70
    Timestamp: 1388153434
    Contact:
    Expires: 180
    Allow-Events: telephone-event
    Proxy-Authorization: Digest username="17772882353",realm="callcentric.com",uri="sip:[email protected]:5080",response="cbac03a76a23b6a35ebbee966c00a577",nonce="3755ae79fd668c2035ebb90cdc12d030",opaque="",algorithm=MD5
    Content-Type: application/sdp
    Content-Disposition: session;handling=required
    Content-Length: 297
    v=0
    o=CiscoSystemsSIP-GW-UserAgent 3022 9963 IN IP4 66.55.220.166
    s=SIP Call
    c=IN IP4 66.55.220.166
    t=0 0
    m=audio 19258 RTP/AVP 18 101 19
    c=IN IP4 66.55.220.166
    a=rtpmap:18 G729/8000
    a=fmtp:18 annexb=no
    a=rtpmap:101 telephone-event/8000
    a=fmtp:101 0-16
    a=rtpmap:19 CN/8000
    a=ptime:20
    *Dec 27 14:10:34.990: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    SIP/2.0 403 Incorrect Authentication
    v: SIP/2.0/UDP 66.55.220.166:5060;branch=z9hG4bK579619F9
    f: "Server Room" [email protected]>;tag=F1B9854-8A5
    t: [email protected]>
    i: [email protected]
    CSeq: 102 INVITE
    l: 0
    *Dec 27 14:10:35.002: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Sent:
    ACK sip:[email protected]:5080 SIP/2.0
    Via: SIP/2.0/UDP 66.55.220.166:5060;branch=z9hG4bK579619F9
    From: "Server Room" [email protected]>;tag=F1B9854-8A5
    To: [email protected]>
    Date: Fri, 27 Dec 2013 14:10:34 GMT
    Call-ID: [email protected]
    Max-Forwards: 70
    CSeq: 102 ACK
    Allow-Events: telephone-event
    Content-Length: 0
    Here is debug voip ccapi inout:
    GMIT-VOICEROUTER01#debug voip ccapi inout
    voip ccapi inout debugging is on
    GMIT-VOICEROUTER01#
    *Dec 27 14:10:55.326: //-1/8912F77B8243/CCAPI/cc_api_display_ie_subfields:
       cc_api_call_setup_ind_common:
       cisco-username=
       ----- ccCallInfo IE subfields -----
       cisco-ani=7018
       cisco-anitype=0
       cisco-aniplan=0
       cisco-anipi=0
       cisco-anisi=0
       dest=
       cisco-desttype=0
       cisco-destplan=0
       cisco-rdie=FFFFFFFF
       cisco-rdn=
       cisco-lastrdn=
       cisco-rdntype=0
       cisco-rdnplan=0
       cisco-rdnpi=0
       cisco-rdnsi=0
       cisco-redirectreason=0   fwd_final_type =0
       final_redirectNumber =
       hunt_group_timeout =0
    *Dec 27 14:10:55.326: //-1/8912F77B8243/CCAPI/cc_api_call_setup_ind_common:
       Interface=0x4A4AE7B0, Call Info(
       Calling Number=7018,(Calling Name=)(TON=Unknown, NPI=Unknown, Screening=Not Screened, Presentation=Allowed),
       Called Number=(TON=Unknown, NPI=Unknown),
       Calling Translated=FALSE, Subscriber Type Str=RegularLine, FinalDestinationFlag=FALSE,
       Incoming Dial-peer=20009, Progress Indication=ORIGINATING SIDE IS NON ISDN(3)
    GMIT-VOICEROUT, Calling IE Present=TRUE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, CLID Transparent=FALSE), Call Id=-1
    *Dec 27 14:10:55.326: //-1/8912F77B8243/CCAPI/ccCheckClipClir:
       In: Calling Number=7018(TON=Unknown, NPI=Unknown, Screening=Not Screened, Presentation=Allowed)
    *Dec 27 14:10:55.326: //-1/8912F77B8243/CCAPI/ccCheckClipClir:
       Out: Calling Number=7018(TON=Unknown, NPI=Unknown, Screening=Not Screened, Presentation=Allowed)
    *Dec 27 14:10:55.326: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    *Dec 27 14:10:55.326: :cc_get_feature_vsa malloc success
    *Dec 27 14:10:55.326: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    *Dec 27 14:10:55.326:  cc_get_feature_vsa count is 1
    *Dec 27 14:10:55.326: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    *Dec 27 14:10:55.326: :FEATURE_VSA attributes are: feature_name:0,feature_time:1282234808,feature_id:151
    *Dec 27 14:10:55.330: //12898/8912F77B8243/CCAPI/cc_api_call_setup_ind_common:
       Set Up Event Sent;
       Call Info(Calling Number=7018(TON=Unknown, NPI=Unknown, Screening=Not Screened, Presentation=Allowed),
       Called Number=(TON=Unknown, NPI=Unknown))
    *Dec 27 14:10:55.330: //12898/8912F77B8243/CCAPI/cc_process_call_setup_ind:
       Event=0x49A103B8
    *Dec 27 14:10:55.330: //12898/8912F77B8243/CCAPI/ccCallSetContext:
       Context=0x4C5A319C
    *Dec 27 14:10:55.334: //12898/8912F77B8243/CCAPI/cc_process_call_setup_ind:
       >>>>CCAPI handed cid 12898 with tag 20009 to app "_ManagedAppProcess_Default"
    *Dec 27 14:10:55.334: //12898/8912F77B8243/CCAPI/ccCallSetupAck:
       Call Id=12898
    *Dec 27 14:10:55.334: //12898/8912F77B8243/CCAPI/cc_api_set_transfer_info:
       Transfer Number=, Transfer Reason=0x0
    *Dec 27 14:10:55.334: //12898/8912F77B8243/CCAPI/ccGenerateToneInfo:
       Stop Tone On Digit=TRUE, Tone=Dial Tone,
       Tone Direction=Network, Params=0x0, Call Id=12898
    *Dec 27 14:10:55.334: //12898/8912F77B8243/CCAPI/ccSetDigitTimeouts:
       Initial Digit Timeout=-1000(ms), Inter Digit Timeout=-1000(ms)
    *Dec 27 14:10:55.338: //12898/8912F77B8243/CCAPI/ccSetDigitTimeouts:
       Call Entry(Inter Digit Timeout=10000(ms), Initial Digit Timeout=10000(ms))
    *Dec 27 14:10:55.338: //12898/xxxxxxxxxxxx/CCAPI/ccCallReportDigits:
       (callID=0x3262, digit_event=0x1, enable=TRUE, consume=FALSE)
    *Dec 27 14:10:55.338: //12898/8912F77B8243/CCAPI/ccCallReportDigits:
       Enabled=TRUE, Call Id=12898
    *Dec 27 14:10:55.338: //12898/xxxxxxxxxxxx/CCAPI/cc_api_call_report_digits_done:
       (vdbPtr=0x4A4AE7B0, callID=0x3262, disp=0, digit_event=0x1, enable=TRUE, consume=FALSE)
    *Dec 27 14:10:55.338: //12898/8912F77B8243/CCAPI/cc_api_call_report_digits_done:
       Enabled=TRUE, Disposition=0x0, Interface=0x4A4AE7B0, Call Id=12898
    *Dec 27 14:10:55.338: //12898/8912F77B8243/CCAPI/cc_api_call_report_digits_done:
       Call Entry(Initial Digit Timeout=15000(ms), Inter Digit Timeout=10000(ms))
    *Dec 27 14:10:56.650: //12898/8912F77B8243/CCAPI/cc_api_call_digit_begin:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=9, DigitBeginFlags=0x0,
       Rtp Timestamp=0x9D41D0, Rtp Expiration=0x0
    *Dec 27 14:10:56.654: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=9, Duration=100,
       Xrule Calling Tag=0, Xrule Called Tag=0, Digit Tone Mode=DTMF
    *Dec 27 14:10:56.654: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Call Entry(Handoff Depth=0)
    *Dec 27 14:10:56.970: //12898/8912F77B8243/CCAPI/cc_api_call_digit_begin:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=1, DigitBeginFlags=0x0,
       Rtp Timestamp=0x9DBED0, Rtp Expiration=0x0
    *Dec 27 14:10:56.974: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=1, Duration=100,
       Xrule Calling Tag=0, Xrule Called Tag=0, Digit Tone Mode=DTMF
    *Dec 27 14:10:56.974: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Call Entry(Handoff Depth=0)
    *Dec 27 14:10:57.290: //12898/8912F77B8243/CCAPI/cc_api_call_digit_begin:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=2, DigitBeginFlags=0x0,
       Rtp Timestamp=0x9E3BD0, Rtp Expiration=0x0
    *Dec 27 14:10:57.294: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=2, Duration=100,
       Xrule Calling Tag=0, Xrule Called Tag=0, Digit Tone Mode=DTMF
    *Dec 27 14:10:57.294: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Call Entry(Handoff Depth=0)
    *Dec 27 14:10:57.610: //12898/8912F77B8243/CCAPI/cc_api_call_digit_begin:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=0, DigitBeginFlags=0x0,
       Rtp Timestamp=0x9EB8D0, Rtp Expiration=0x0
    *Dec 27 14:10:57.614: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=0, Duration=100,
       Xrule Calling Tag=0, Xrule Called Tag=0, Digit Tone Mode=DTMF
    *Dec 27 14:10:57.614: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Call Entry(Handoff Depth=0)
    *Dec 27 14:10:57.890: //12898/8912F77B8243/CCAPI/cc_api_call_digit_begin:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=7, DigitBeginFlags=0x0,
       Rtp Timestamp=0x9F35D0, Rtp Expiration=0x0
    *Dec 27 14:10:57.894: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=7, Duration=100,
       Xrule Calling Tag=0, Xrule Called Tag=0, Digit Tone Mode=DTMF
    *Dec 27 14:10:57.894: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Call Entry(Handoff Depth=0)
    *Dec 27 14:10:58.162: //12898/8912F77B8243/CCAPI/cc_api_call_digit_begin:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=2, DigitBeginFlags=0x0,
       Rtp Timestamp=0x9FB2D0, Rtp Expiration=0x0
    *Dec 27 14:10:58.162: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=2, Duration=100,
       Xrule Calling Tag=0, Xrule Called Tag=0, Digit Tone Mode=DTMF
    *Dec 27 14:10:58.162: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Call Entry(Handoff Depth=0)
    *Dec 27 14:10:58.314: //12898/8912F77B8243/CCAPI/cc_api_call_digit_begin:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=2, DigitBeginFlags=0x0,
       Rtp Timestamp=0xA02FD0, Rtp Expiration=0x0
    *Dec 27 14:10:58.314: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=2, Duration=100,
       Xrule Calling Tag=0, Xrule Called Tag=0, Digit Tone Mode=DTMF
    *Dec 27 14:10:58.314: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Call Entry(Handoff Depth=0)
    *Dec 27 14:10:58.582: //12898/8912F77B8243/CCAPI/cc_api_call_digit_begin:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=7, DigitBeginFlags=0x0,
       Rtp Timestamp=0xA0ACD0, Rtp Expiration=0x0
    *Dec 27 14:10:58.582: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=7, Duration=100,
       Xrule Calling Tag=0, Xrule Called Tag=0, Digit Tone Mode=DTMF
    *Dec 27 14:10:58.582: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Call Entry(Handoff Depth=0)
    *Dec 27 14:10:58.754: //12898/8912F77B8243/CCAPI/cc_api_call_digit_begin:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=7, DigitBeginFlags=0x0,
       Rtp Timestamp=0xA129D0, Rtp Expiration=0x0
    *Dec 27 14:10:58.754: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=7, Duration=100,
       Xrule Calling Tag=0, Xrule Called Tag=0, Digit Tone Mode=DTMF
    *Dec 27 14:10:58.754: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Call Entry(Handoff Depth=0)
    *Dec 27 14:10:59.022: //12898/8912F77B8243/CCAPI/cc_api_call_digit_begin:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=6, DigitBeginFlags=0x0,
       Rtp Timestamp=0xA1A6D0, Rtp Expiration=0x0
    *Dec 27 14:10:59.022: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Destination Interface=0x0, Destination Mask=0x3, Destination Call Id=-1,
       Source Call Id=12898, Digit=6, Duration=100,
       Xrule Calling Tag=0, Xrule Called Tag=0, Digit Tone Mode=DTMF
    *Dec 27 14:10:59.022: //12898/8912F77B8243/CCAPI/cc_api_call_digit_end:
       Call Entry(Handoff Depth=0)
    *Dec 27 14:10:59.026: //12898/xxxxxxxxxxxx/CCAPI/ccCallReportDigits:
       (callID=0x3262, digit_event=0x0, enable=FALSE, consume=FALSE)
    *Dec 27 14:10:59.026: //12898/8912F77B8243/CCAPI/ccCallReportDigits:
       Enabled=TRUE, Call Id=12898
    *Dec 27 14:10:59.026: //12898/xxxxxxxxxxxx/CCAPI/cc_api_call_report_digits_done:
       (vdbPtr=0x4A4AE7B0, callID=0x3262, disp=0, digit_event=0x0, enable=FALSE, consume=FALSE)
    *Dec 27 14:10:59.026: //12898/8912F77B8243/CCAPI/cc_api_call_report_digits_done:
       Enabled=TRUE, Disposition=0x0, Interface=0x4A4AE7B0, Call Id=12898
    *Dec 27 14:10:59.026: //12898/8912F77B8243/CCAPI/cc_api_call_report_digits_done:
       Call Entry(Initial Digit Timeout=15000(ms), Inter Digit Timeout=10000(ms))
    *Dec 27 14:10:59.026: //12898/8912F77B8243/CCAPI/ccCallProceeding:
       Progress Indication=NULL(0)
    *Dec 27 14:10:59.030: //12898/8912F77B8243/CCAPI/ccCallSetupRequest:
       Destination=, Calling IE Present=TRUE, Mode=0,
       Outgoing Dial-peer=702, Params=0x4C5A0BDC, Progress Indication=ORIGINATING SIDE IS NON ISDN(3)
    *Dec 27 14:10:59.030: //12898/8912F77B8243/CCAPI/ccCheckClipClir:
       In: Calling Number=20722672628(TON=Unknown, NPI=Unknown, Screening=Not Screened, Presentation=Allowed)
    *Dec 27 14:10:59.030: //12898/8912F77B8243/CCAPI/ccCheckClipClir:
       Out: Calling Number=20722672628(TON=Unknown, NPI=Unknown, Screening=Not Screened, Presentation=Allowed)
    *Dec 27 14:10:59.030: //12898/8912F77B8243/CCAPI/ccCallSetupRequest:
       Destination Pattern=91[2-9]......., Called Number=120722776, Digit Strip=FALSE
    *Dec 27 14:10:59.030: //12898/8912F77B8243/CCAPI/ccCallSetupRequest:
       Calling Number=20722672628(TON=Unknown, NPI=Unknown, Screening=Not Screened, Presentation=Allowed),
       Called Number=120722776(TON=Unknown, NPI=Unknown),
       Redirect Number=, Display Info=Server Room
       Account Number=, Final Destination Flag=FALSE,
       Guid=8912F77B-6E37-11E3-8243-90AE21CDDC5B, Outgoing Dial-peer=702
    *Dec 27 14:10:59.030: //12898/8912F77B8243/CCAPI/cc_api_display_ie_subfields:
       ccCallSetupRequest:
       cisco-username=
       ----- ccCallInfo IE subfields -----
       cisco-ani=20722672628
       cisco-anitype=0
       cisco-aniplan=0
       cisco-anipi=0
       cisco-anisi=0
       dest=120722776
       cisco-desttype=0
       cisco-destplan=0
       cisco-rdie=FFFFFFFF
       cisco-rdn=
       cisco-lastrdn=
       cisco-rdntype=0
       cisco-rdnplan=0
       cisco-rdnpi=0
       cisco-rdnsi=0
       cisco-redirectreason=0   fwd_final_type =0
       final_redirectNumber =
       hunt_group_timeout =0
    *Dec 27 14:10:59.034: //12898/8912F77B8243/CCAPI/ccIFCallSetupRequestPrivate:
       Interface=0x48C27BD0, Interface Type=3, Destination=, Mode=0x0,
       Call Params(Calling Number=20722672628,(Calling Name=Server Room)(TON=Unknown, NPI=Unknown, Screening=Not Screened, Presentation=Allowed),
       Called Number=120722776(TON=Unknown, NPI=Unknown), Calling Translated=FALSE,
       Subscriber Type Str=RegularLine, FinalDestinationFlag=FALSE, Outgoing Dial-peer=702, Call Count On=FALSE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, tg_label_flag=0, Application Call Id=)
    *Dec 27 14:10:59.034: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    *Dec 27 14:10:59.034: :cc_get_feature_vsa malloc success
    *Dec 27 14:10:59.034: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    *Dec 27 14:10:59.034:  cc_get_feature_vsa count is 2
    *Dec 27 14:10:59.034: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    *Dec 27 14:10:59.034: :FEATURE_VSA attributes are: feature_name:0,feature_time:1282234584,feature_id:152
    *Dec 27 14:10:59.034: //12899/8912F77B8243/CCAPI/ccIFCallSetupRequestPrivate:
       SPI Call Setup Request Is Success; Interface Type=3, FlowMode=1
    *Dec 27 14:10:59.034: //12899/8912F77B8243/CCAPI/ccCallSetContext:
       Context=0x4C5A0B8C
    *Dec 27 14:10:59.034: //12898/8912F77B8243/CCAPI/ccSaveDialpeerTag:
       Outgoing Dial-peer=702
    *Dec 27 14:10:59.038: //12899/8912F77B8243/CCAPI/cc_api_call_proceeding:
       Interface=0x48C27BD0, Progress Indication=NULL(0)
    *Dec 27 14:10:59.270: //12899/8912F77B8243/CCAPI/cc_api_call_disconnected:
       Cause Value=57, Interface=0x48C27BD0, Call Id=12899
    *Dec 27 14:10:59.270: //12899/8912F77B8243/CCAPI/cc_api_call_disconnected:
       Call Entry(Responsed=TRUE, Cause Value=57, Retry Count=0)
    *Dec 27 14:10:59.270: //12898/xxxxxxxxxxxx/CCAPI/ccCallReleaseResources:
       release reserved xcoding resource.
    *Dec 27 14:10:59.270: //12899/8912F77B8243/CCAPI/ccCallSetAAA_Accounting:
       Accounting=0, Call Id=12899
    *Dec 27 14:10:59.270: //12899/8912F77B8243/CCAPI/ccCallDisconnect:
       Cause Value=57, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect Cause=57)
    *Dec 27 14:10:59.270: //12899/8912F77B8243/CCAPI/ccCallDisconnect:
       Cause Value=57, Call Entry(Responsed=TRUE, Cause Value=57)
    *Dec 27 14:10:59.274: //12899/8912F77B8243/CCAPI/cc_api_call_disconnect_done:
       Disposition=0, Interface=0x48C27BD0, Tag=0x0, Call Id=12899,
       Call Entry(Disconnect Cause=57, Voice Class Cause Code=0, Retry Count=0)
    *Dec 27 14:10:59.274: //12899/8912F77B8243/CCAPI/cc_api_call_disconnect_done:
       Call Disconnect Event Sent
    *Dec 27 14:10:59.274: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    *Dec 27 14:10:59.274: :cc_free_feature_vsa freeing 4C6D58D0
    *Dec 27 14:10:59.274: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    *Dec 27 14:10:59.274:  vsacount in free is 1
    *Dec 27 14:10:59.278: //12898/8912F77B8243/CCAPI/ccCallDisconnect:
       Cause Value=57, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect Cause=0)
    *Dec 27 14:10:59.278: //12898/8912F77B8243/CCAPI/ccCallDisconnect:
       Cause Value=57, Call Entry(Responsed=TRUE, Cause Value=57)
    *Dec 27 14:10:59.278: //12898/8912F77B8243/CCAPI/cc_api_get_transfer_info:
       Transfer Number Is Null
    *Dec 27 14:11:02.250: //12898/8912F77B8243/CCAPI/cc_api_call_disconnect_done:
       Disposition=0, Interface=0x4A4AE7B0, Tag=0x0, Call Id=12898,
       Call Entry(Disconnect Cause=57, Voice Class Cause Code=0, Retry Count=0)
    *Dec 27 14:11:02.250: //12898/8912F77B8243/CCAPI/cc_api_call_disconnect_done:
       Call Disconnect Event Sent
    *Dec 27 14:11:02.250: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    *Dec 27 14:11:02.250: :cc_free_feature_vsa freeing 4C6D59B0
    *Dec 27 14:11:02.250: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    *Dec 27 14:11:02.250:  vsacount in free is 0ER01#

  • Not matching PURCHASED tracks!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    After MobileMess, you'd think these people would make sure things work before they release them.
    I have tracks that I purchased from the iTunes Music Store that iTunes Match is telling me it has to upload.
    What?!!!!!!!!?
    It's bad enough that some albums are partially matching.  But, to have this POS tell me that purchased tracks have to be uploaded is absolutely ridiculous.
    It's CLEAR that this thing is not ready-for-primetime and should have, at the least, been labeled a Beta release.  The upshot of it, I'll be calling Customer Relations and getting no less than an extra year for free from this debacle.

    I tend to think that this could be a combination of Apple stumbling just a bit with this execution as well as restrictions from the music labels.  There are plenty of matches in my library that are not available for purchase in the store (no complaints here for that feature!) as well as a few store purchases made in the 128 kbps DRM days that do not match and required upload.  At least one of those cases I looked into is for a group that pulled their wares from the store years ago.  Out of 10,000 songs of mixed origin in my library, 1200 required uploading; still going through them looking for possible reasons but there are definitely store purchases in the lot.  I'm betting there will be improvement in the match rate, in time. 

  • URLs not matching the mappings I set in web.xml

    Below is what I observe, I would have expected the URL to match all 3 but it only matches for the first one , any ideas?
    Web.xml contains
    <filter>
         <filter-name>MyFilter</filter-name>
         <filter-class>HWfilter</filter-class>
    </filter>
    <filter-mapping>
         <filter-name>MyFilter</filter-name>
         <url-pattern>/*</url-pattern>
    </filter-mapping>
    http://localhost/Chapter7/test.txt  - URL matches filter
    Web.xml contains
    <filter>
         <filter-name>MyFilter</filter-name>
         <filter-class>HWfilter</filter-class>
    </filter>
    <filter-mapping>
         <filter-name>MyFilter</filter-name>
         <url-pattern>*</url-pattern>
    </filter-mapping>
    http://localhost/Chapter7/test.txt  - URL DOES NOT match filter
    Web.xml contains
    <filter>
         <filter-name>MyFilter</filter-name>
         <filter-class>HWfilter</filter-class>
    </filter>
    <filter-mapping>
         <filter-name>MyFilter</filter-name>
         <url-pattern>/*.txt</url-pattern>
    </filter-mapping>
    http://localhost/Chapter7/test.txt  - URL DOES NOT match filter
    ----------------------------------------------------------------

    I found this in the Servlet API specification:
    � A string beginning with a �/� character and ending with a �/*� postfix is used
    for path mapping.
    � A string beginning with a �*.� prefix is used as an extension mapping.
    � A string containing only the �/� character indicates the "default" servlet of the
    application. In this case the servlet path is the request URI minus the context
    path and the path info is null.
    � All other strings are used for exact matches only.
    According to this, your third one should work if you remove the / and just have *.txt.

  • Songs Unmatched by iTunes Match

    A number of songs in my library remain unmatched by iTunes Match and were uploaded instead. However, I know that many of the songs that were uploaded are available in iTunes (such as Star Wars tracks). Also, some albums were partially matched like Hootie & the Blowfish's Cracked Rear View.
    How can I alert iTunes Match that the songs I want are available and should not be uploaded?
    FlynFast

    Read this user tip Some User Tips (December 2014)
    You could provide feedback but I doubt whether they would take any action as the music is supplied by the record companies. For whatever reason, there are many tracks that don't match when you think they should.
    Jim

  • Anyone had success re-matching an incompletely matched album?

    iTunes Match did a reasonably decent job matching my music. The main exceptions seem to be where iTunes has a remastered version and I had a rip from a pretty old CD.
    On the other hand, I have a lot of cases where every song on an album but one or two matched. It seems incomprehensible.
    Has anyone had success getting a later match in that case? I've tried deleting the song from iCloud and re-adding it to iTunes, but it just uploads again.

    I've been looking at this some and it seems to be a combination of song length and price of song that throws off the matching. For albums that were only partially matched, when I look at the iTunes version vs my version, often times my version is a few seconds longer / shorter (due to the CD conversion process adding / subtracting seconds) or the iTunes song has a different price than the other songs on the album. (like $1.29 vs $.99 for the rest). The last song on a album is most likely for me not to be matched, probably because CD conversion may sometimes add length to the last song.
    I'm not saying this is right or how to fix it, I just think that's what is going on. The only thing I'm sure of that's it's NOT taking into account the ALBUM NAME (since I change many of mine and I still get matches). I also do not think it's doing any type of audio fingerprint match as that would take WAY too long to do on large libraries - even a 5 second sample on my 13,000 song library would take about 18 hours not counting transmission time). So it looks like song name, artist, song length and PRICE (for some reason) are the important factors for match.
    Tony

  • Multiclip editing: applying filter to a certain angle

    Hello to all!
    I have my multiclip sequence. It is made up of angle A and angle B. I've already finished to edit it. Now I want to apply a filter (let's say a color match filter) to angle A. I want this change to propagate to all A angles in my multiclip. How can I do this? If I apply the filter to angle A, I can see it in the viewer, but nothing change in my multiclip...
    Thanks in advance!
    D.

    Once the clips are moved to the timeline they become somewhat independent from the master clip. To apply a filter to an entire angle (in an existing sequence), select the first occurrence and apply the filter to it. Copy the clip then select all other occurrences of that angle in that sequence (command click each one) then select paste attributes and tick filters.
    It's a bit of a chore and can cause problems if there are already filters applied to the first clip. If this is the case turn off the other filters before you copy the clip (then reactivate them), they will copy over but will not be active. Existing filters will not be erased when you paste attributes as it adds to the existing filters.
    Hope this helps.

Maybe you are looking for