Getting original digits dialed by user, or their Route patterns

Greets ,
I am using TAPI to monitor IP phones on my AVVID network so that i can use the data to log the destinations and numbers that system users call.
i also use the numbers i obtain to get the route pattern that the number matched (so that i can do some kind of billing) , but my problem is when the number matches a route pattern the number that reaches TAPI is affected with the Discard Digits option in the route pattern , for example
User dials 67272
matches RP 6.xxxx with Discard Digits set to "PreDot"
TAPI receives 7272
is there some kind of way to get the whole number, or at least to get the route pattern that the number matched in TAPI?
Thank you.

I know little about TAPI but in JTAPI we have the originaldiallednumber (or thereof) which might be of use. I have never looked at it in terms of translation patterns, however I know that in case of a redirect, that number is the number that was originally called, not the number the call finally goes to.

Similar Messages

  • How can i get the MAC of the users from my router?

    Hi I need to get the MAC of the users from my router, but without go its web page. I have to make a program to get that list since a computer desktop wich will be periodically sensing my router. I appreciate your help thanks.

    Have you tried psexec? it's a command prompt utility that executes program on the remote computer.
    For example: PC1 (192.168.1.2) to PC2 (192.168.1.3)
    In the command prompt window on PC1, type psexec \\192.168.1.3 ipconfig /all
    Then get the MAC address

  • How do you get a digital dial indicator to read in labview?

    I have a digital dial indicator which I uses a USB conection.  the deviece says it is working in MAX but I can not get it to display any numbers in max.  I have also tried to set it up in a VI with a DAQ but the DAQ does not find the device.  Can anyone help?

    Richard @ GE wrote:
    Using hyperterminal I have to press a button on the cable connecting the insturment to the computer for it to record a value. 
    I have not written any code yet for labview.  I have only tried to figure out how to get LabView to see the device but have not been able to acomplish that. 
    By "record a value" I am interpreting this to mean that you are seeing text appear in HyperTerminal. In this case the reason why you are seeing "stuff" in HyperTerminal but not in MAX is that HyperTerminal is continuously running and spitting out whatever is on the serial port. The MAX test panels don't work that way. If you open the Example Finder and look at the Basic Serial Write and Read VI you will see that the read part of that VI checks to see how many bytes are on the serial port and reads that many. If you put this inside a loop then you will get an equivalent to what HyperTerminal does. 

  • How to get a list of current users and their transactions code?

    SM04 and AL08 give the list, but its not comprehensive.  in sm04, we have to click the username and select sessions and then a
    new popup comes giving all transactions for the user. 
    I want a list such that each and every transaction corresponding to the user is listed at same time.

    Hi,
    Use the FM TH_LONG_USR_INFO.
    Just give parameter user as * (it means all users, other wise current user)
    It will give ALL transactions for ALL users.
    Regards,
    Amit Mittal.
    Edited by: Amit Mittal on Dec 30, 2009 1:00 PM
    Edited by: Amit Mittal on Dec 30, 2009 1:03 PM

  • Need to get a listing of all users and their corresponding Exchange 2013 Mailbox Quotas using Powershell

    I will be changing the default quota on mailboxes soon, but there are a number of others who have "customized" quotas and I will need to identify them also.
    Charlie

    The following powershell command can get you the mailboxes that are using "custum "quota:
    Get-Mailbox -Resultsize unlimited | where-object {$_.UseDatabaseQuotaDefaults -eq $false}

  • I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date is created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date  created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    The Finder reports File information. The date and time of the photo are in the Photo's Exif metadata. The Finder has no awareness of this. All photos apps on any system do.
    Regards
    TD

  • Getting list of all users and their group memberships from Active Directory

    Hi,
    I want to retrieve a list of all the users and their group memberships through JNDI from Active Directory. I am using the following code to achieve this:
    ==================
    import javax.naming.*;
    import java.util.Hashtable;
    import javax.naming.directory.*;
    public class GetUsersGroups{
         public static void main(String[] args){
              String[] attributeNames = {"memberOf"};
              //create an initial directory context
              Hashtable env = new Hashtable();
              env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
              env.put(Context.PROVIDER_URL, "ldap://172.19.1.32:389/");
              env.put(Context.SECURITY_AUTHENTICATION, "simple");
              env.put(Context.SECURITY_PRINCIPAL, "[email protected]");
              env.put(Context.SECURITY_CREDENTIALS, "p8admin");
              try {
                   // Create the initial directory context
                   DirContext ctx = new InitialDirContext(env);     
                   //get all the users list and their group memberships
                   NamingEnumeration contentsEnum = ctx.list("CN=Users,DC=filenetp8,DC=com");
                   while (contentsEnum.hasMore()){
                        NameClassPair ncp = (NameClassPair) contentsEnum.next();
                        String userName = ncp.getName();
                        System.out.println("User: "+userName);
                        try{
                             System.out.println("am here....1");
                             Attributes attrs = ctx.getAttributes(userName, attributeNames); // only asked for one attribute so only one should be returned
                             System.out.println("am here....2");
                             Attribute groupsAttribute = attrs.get(attributeNames[0]); // memberOf
                             System.out.println("-----"+groupsAttribute.size());
                             if (groupsAttribute != null){
                                  // memberOf is a multi valued attribute
                                  for (int i=0; i<groupsAttribute.size(); i++){
                                  // print out each group that user belongs to
                                  System.out.println("MemberOf: "+groupsAttribute.get(i));
                        }catch(NamingException ne){
                        // ignore for now
                   System.err.println("Problem encountered....0000:" + ne);
                   //get all the groups list
              } catch (NamingException e) {
              System.err.println("Problem encountered 1111:" + e);
    =================
    The following exception gets thrown at every user entry:
    User: CN=Administrator
    am here....1
    Problem encountered....0000:javax.naming.NamingException: [LDAP: error code 1 -
    000020D6: SvcErr: DSID-03100690, problem 5012 (DIR_ERROR), data 0
    ]; remaining name 'CN=Administrator'
    I think it gets thrown at this line in the code:
    Attributes attrs = ctx.getAttributes(userName, attributeNames);
    Any idea how to overcome this and where am I wrong?
    Thanks in advance,
    Regards.

    In this sentence:
    Attributes attrs = ctx.getAttributes(userName, attributeNames); // only asked for one attribute so only one should
    It seems Ok when I add "CN=Users,DC=filenetp8,DC=com" after userName, just as
    userName + ",CN=Users,DC=filenetp8,DC=com"
    But I still have some problem with it.
    Hope it will be useful for you.

  • Live CD for newbies and dial up users

    From comments I am receiving abut the usage of AL-AMLUG Live CD, it helps <b>newbies</b> to install the native Arch Linux in HDD. Without any "headage" it does all the major configures (X, sound, network, and LILO) for you. The "<b>hd-install</b>" includes Hwd (hardware detect) and net-install with DHCP & ADSL setup.
    Does sounds good for a newbie? Anything good also include a "but...". Disadvantage with hd-install, in my opinion, you will miss the learning of Arch Linux's configure system what you may need for post configure of new hardwares and programs..... sooner or later you have to become an Archer 
    The live CD is also for the "<b>dial up users</b>" with 56k modems, when the packages in Arch Linux's latest installer CD getting outdated. Example, AL 0.5 was released July 21, 2003. The current live CD 0.4.2 with the base, KDE and common packages updated on February 12, 2004.
    http://amlug.net/new-projects/live-cd/p … list-0.4.2
    GNOME users may not be happy. For your information, there is still 280MB space on the live CD for more packages. Total space: 1.3GB (compressed to 700MB).
    AL-AMLUG Live CD project page:
    http://amlug.net/new-projects/live-cd/a … ve-cd.html

    beniro,
    after week of not even touching this thread i still have to say that i fail to see what is derogatory in my comments. derrogatory is where you put down something for the sake of putting something down.  i  hardly ever do something like that. i may be blunt but hardly ever derrogatory. 
    look in the mirror? i have done that alot i have looked in the mirror i have tried to understand the way some people came to the conclusioned they did about me. perhaps i a m blind or stupid but when have i ever not tried to get something positive for the community? when i look in that mirro i see someone who put alot of time and effort into helping the community with problems. i see somebody that where ever they have gone always express what they feel despite what blowback may happen. i don't believe in bottling things up. in the end though all people see is the negative.
    nifan,
    there are lots of ways to help a friend out installling any distro. but in the end if you don't know the guts then expect things to go bad at some point. linux is not designed for someone who just wants the computer to do everything. indeed if linux were like that then there would be a whole host of security risks presented.
    as for me slamming arch. well if you didn't notice i having only been too willing to always air out arch's dirty laundry.  i have been harping on the documentation and so have many others. should those others move on too while the developers/community continue to bury their heads in the sand and feel they can keep marching on? if somebody didn't do who would and where would arch be then?
    i am here EVERYDAY. EVERYDAY since i joined this forum. i have asked and answered questions, i contributed on the irc channel, i worked for the distro everyday for almiost a year. i know what was going what went on. i still point out some thigns to aid the developers. in the end my view of kiss   never really strayed from the documented version of arch's kiss statement  and i felt arch had and was continuing to. there were just too many small things that bothered me and i decided to use another distro.
    now that i have moved on though i needed something to keep my desire to help occupied and crux does not have a forum nor can i help out that much on irc because it is distro mainly used by europeans and our clock are just not synced. i still know arch fiarly well and actually crux is very similar so why not help. i have nothing against the community.
    why do i get bitter then. well to beat dead horse. i try to help or try to voice an opinion and the response i commonly get back a tirade against my person.  now it is at the point now where some people do not  or refuse to see any constructive or helpful posts i make here.  take al ook at rasat he is someone who has been the victim of many a criticism from me and he never once made any insults towards me nor did he ever not put the blinders on to what i was saying. after nearly a year of taking the odd jab from me he still knows exactly why make the comments towards his projects i do.
    in the end i don't really care what he does as his work does bring people to the arch community. i just try and make sure that he can design his projects in such a way as to not create a pile of mindless users that need their hand held through everything.  from what i remember of early versions of hwd for example he made it still a very hands on approach for the user. ultimately that is what  i wanted him to hear and he did.
    if you don't think that the system taking control of your work environment is a burden on the community take a look at just how much help we need to give here and on the mail list. if people had come from a more hands on environment they would rarely have to use irc, forums or mail lists. linux is  hard to get used to because it is desigened to be hands on sytem and anyone who does not want this should really not be using it. thats mean but true. with ease comes security risks.
    belive me i am lazy i came from the least hands on distro before arch and i would NEVER go back to distro not like arch or crux or ... i have learned alot and there is very few issues i cannot figure out. arch's kiss approach taught me alot and crux has brought me back to it.
    in the end i am here to help and if you doubt that then well you just should not bother with any of my posts because i WILL piss you off eventually whether i am trying to or not.

  • DTMF Digits Dialing issue on 8831 Conference Phone

    Hi,
    anyone had a DTMF digits dialing issue on Cisco 8831 conference phone. If I have to join any external conference bridge, when I trying dial my user id and  password its not sending the digit i am dialing. Conference bridge is saying wrong PIN dialed.Please suggest

    Hi
    Actually this problem was on SIP call,User was dialing shortcode and it was going through their SIP trunk, raised case with TAC and they replied "its expected behavior and documented in the release guides, we do not find any defects filed to fix this. we are hoping, this behavioral change would be included in the future releases"
    version of call manager  9.1.2.11900-12
    current firmware running on the phone-SIP 9.3.3.5

  • How to find out list of users and their access on Sharepoint

    Hello Everyone
    How can i find out list of users and what access they have on SharePoint site? I want to create table with list of the users and their access?
    Thanks

    you can get the report using below powershell scripts. first one gives list of users in a site collection level.
    The second link generates the permissions reports for each user.
    http://techtrainingnotes.blogspot.com/2010/12/sharepoint-powershell-script-to-list.html
    https://sp2010userperm.codeplex.com/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • List of users and their decimal notation settings in SAP system

    Hi all, i'm looking to get my hands on a list of all users in our SAP system and their respective decimal notation settings? I know that these can be mass changed using SU10 however I am unable to determine how to view a list of users and their settings.
    Thanks,
    James

    Hi James,
    You can find many useful reports, in SUIM transaction to see user details, but not decimal notation field. I don't know a report to show decimal notations, but as a workaround, in order to see the decimal notation, you can check "USR01-DCPFM" by using "SE16".
    Best regards,
    Orkun Gedik

  • What is best practice in FR ? Original Report access to Users or Snapshot

    Hi,
    can any one pls. let me know on what is the best practice in FR ? I need to give access to original reports to my users or the snapshot access only ? Users are not happy with snapshot access mainly during the closing time. What are the complications if i give access to original reports ? I'm using Batch scheduler, but users are unable to see the data some times. What will be the reason for this ?
    Thanks,
    PVR

    Hi,
    There are certainly many variables to have a look at. Server sizes is one concern, report size is another. Giving access to original reports is fine as long as concurrency and heavy usage don't take the servers down. That said, the reports that will be given access to their originals shouldn't run for 10 minutes for each query. Having 10 user connected to such reports will probably take reporting services down which makes the entire system useless. These types of reports should better be scheduled and shown as snapshots. However, some of these reports might have time-dependent information which needs to be refreshed at query time. In this case you could either give the access to original reports or schedule the reports to run say every 2 hours.
    Cheers,
    Alp

  • HOW CAN I GET ORIGINAL FILE OF A PHOTO FROM IPHOTO

    CAN I GET ORIGINAL FILE OF A PHOTO FROM IPHOTO

    File -> Export
    Set the Kind to Original.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.
    Regards
    TD
    p.s. Please don't type in block capitals. They're harder to read, and on the forum it looks like you're shouting at everybody.

  • This concerns my apple tv. Cant get it to recognise my user id or password even though I've repeatedly verified it on my computer.

    This concerns my apple tv. Cant get it to recognise my user id or password even though I've repeatedly verified it on my computer.

    I was having the same problem. After reading a few threads, restore your Apple TV to its original factory settings (approximately 15-20 minutes) and try logging in again. It just worked perfect for me!

  • How can I get the language of the user logged on using only DI API?

    Hello,
    how can I get the language of the user logged on using only DI API,
    without invoking the UI?
    Can I read the value from some table using sql?
    I could write to file the first user's connection to the language code in SAP and then use it from external program, but I do not like this solution ...
    I know only this possibility:
            '_SboCy ==> SAPbobsCOM.Company
            '_SboCys ==> SAPbobsCOM.CompanyService
            '_SboApp ==> SAPbouiCOM.Application
            CodLng Dim As String = ""
            Dim lng As SAPbobsCOM.UserLanguages _SboCy.GetBusinessObject = (BoObjectTypes.oUserLanguages)
            If lng.GetByKey (_SboApp.Language) Then
                codLng = lng.LanguageShortName
                'Etc. ..
            End If
            lng = Nothing
    Thanks

    Hi Enrico,
    The language settings are held on the user's Windows profile and not in the database. In SBO 2007A onwards there is an XML file that is created by the SBO client (previous versions stored the information in the registry). The file is called b1-current-user.xml and you'll find it in the temporary application data under the user's profile (by default this will be C:\Documents and Settings\<profile>\Local Settings\Application Data\SAP\SAP Business One for Windows XP). This XML file contains a node that looks like the following:
    <leaf kind="single" name="Language" type="String">
         <value>8</value>
    </leaf>
    where the value is the language id that should correspond to the same setting in the DI API. If your application will always run on a workstation where the SBO client is installed then you could read this XML file. Of course, this file may not exist for a particular Windows user if they have never opened the SBO client so you'd need to have a default setting.
    If you application will be installed on a workstation which doesn't have an SBO client installed on it then there is no way to tell what default language to use and you'll need to build this logic in to your own application (eg have a screen where the user can choose their preferred langauge and then store this as a config file in a similar way to how the SBO client works).
    Kind Regards,
    Owen

Maybe you are looking for

  • Problem with 2 computers Airport network

    While long time comfortable with Mac, I am novice with Airport/network. I have a MacMini (with Airport card) and a new PowerBookPro (15" 2.2 Intel Core 2 Duo and Airport card). I have new Airport Extreme Base device and I have successfully set up wir

  • IE 7 problem with jre version 1.4.1

    We are experiencing a problem with a site that is running java applets. It requires version 1.4.1. After logging into this site, a second window should appear. There are several times when that second window will attempt to open but then closes immed

  • Overriding Default JTable Selection Behavior

    I'm attempting to override the default selection behavior of a JTable. For clicking, I want the table to behave basically as if the ctrl key was being held down all the time. That works great. I want the behavior of dragging a selection to behave a c

  • Ping but little else

    I've got a network built around a Verizon-supplied Versalink 327W router at home. Two Linux boxes and my Lombard Powerbook (running) 10.3.9 can connect just fine, but I've got a weird problem with a 'new' 400mhz G3 iMac. It can ping my gateway and pe

  • Filed mapping

    hi, if i have a field in BI and i have to find out its corresponding field in r/3 side..is there any table or tcode to find out (its a business conten DS). Thanks Prashnat