PC-FAX phone number input

Is there a way to do this with a Brother MCF-9340CDW that doesn't involve manually entering the number? Currently, I access the Fax window from the Print window, by clicking on the drop-down menu below the Pages: From: lines. I can't even copy and paste from Contacts because the number format with the () is rejected.
Before getting this printer I used a cheap USB fax-modem that was less than reliable. I accessed it from the PDF drop-down menu, and had full access to my Contacts from that menu. At least I don't have to send faxes frequently, because this is a PITA.
Thanks for any information anyone can provide.

Hi,
If you do not have time to use jQuery but need it asap,
you can use approach from Denes Kubicek samples:
http://htmldb.oracle.com/pls/otn/f?p=31517:154
called Auto Tab Phonenumber      
Regards,
Oleg

Similar Messages

  • Phone Number Vaildation

    Anyone have a function that checks for phone number input
    errors?
    Something like:

    i would try with something like this
    // first of all, you have to be sure that there are only
    numbers in the
    variable, thats easy:
    name_of_the_variable.restrict = "0-9";
    // the only things that you can insert are numbers from 0 to
    9
    // then you have the IF statement:
    if (name_of_the_variable.length == 10 &&
    name_of_the_variable.substr(0, 1)
    != "0" && name_of_the_variable.substr(0, 1) != "1") {
    trace("ok");
    } else {
    trace("noooop");
    you can see that you have an IF with 3 conditions, and
    because the operators
    are AND (&&) the 3 have to be true
    - name_of_the_variable.length == 10 //// number is less or
    more than 10
    digits
    - name_of_the_variable.substr(0, 1) != "0" //// you select
    the first
    number and check that this number is not (!=) 0
    - name_of_the_variable.substr(0, 1) != "1" //// you select
    the first
    number and check that this number is not (!=) 1
    there are many ways to do it (as much as programers)
    i hope this help you, and that you can learn how to think it
    "burritobot" <[email protected]>
    escribi� en el mensaje
    news:ebvsud$ms5$[email protected]..
    > Anyone have a function that checks for phone number
    input errors?
    >
    > Something like:
    >
    >
    >
    >
    >
    > If (number is less or more than 10 digits){
    > giveError();
    > } else if (number contains erroneous characters){
    > give Error();
    > }else if (number starts with 0 or 1){
    > give Error();
    > }
    >

  • Payment advices not picking accounting clerk phone number and fax number.

    Hi,
       We have executed payment program and payment advices got generated. But in the output it is printing everthing i.e accounting clerk name, vendor number and amount. But it is not filling the accounting clerk phone number and fax number even though we have maintained it in our customized transaction code. Will this values in the payment advices will be picked up from standard t.code OB05, there we don't have option to give these two values.
    Can anyboday help me on this.
    Regards,
    Sree

    goto accunt groups with screen layout,
    after creating the group or existing group, double click on account management, in payment transactions make the required fields are required.
    regards,

  • Save a phone number without the input mask

    Hi,
    I actually have 2 related issues that I hope you might be able to help me with.
    I have a form linked to an interactive report, so when I click a record, the form is populated with the record's data. I just started using the new text field masked input plugin to handle phone number formatting, etc., which Patrick recommended.
    The plugin works nicely when a phone number being displayed from the source is 10 characters. The input mask I'm using is (999) 999-9999. However, I also have phone numbers in records that don't include the area code. When I select one of those records, the phone number field is blank. I would like it to display 999-9999, and be right justified. Is there an easy fix for that?
    My next problem occurs when I try to save the record. The process tries to save the phone number, including the mask, (14 characters), to the table. I only want to save the number to the table, excluding the mask. I'm sure there is a way to do this but I haven't found it yet.
    Thanks in advance for any help,
    Gary

    This is my solution to parsing the number only from the masked phone number:
    1) Create a field, 'P1_PHONE_MASKED', with a phone number mask: (?***) 999-9999
    2) Create a hidden Database Column like: 'P1_PHONE' It will initially hold the value of the record's phone column.
    3) create a javascript function in the page's before header section, between the space tags, to strip out all non-numeric values and update the hidden field:
    function remmask(src,tar){
    var mystring = $x(src).value;
    mystring = mystring.replace(/\D/g,'');
    $x(tar).value = mystring;
    4) Place the function call in the from in the HTML Form Elements Attributes of P1_PHONE_MASKED: onBlur="javascript:remmask('P1_PHONE_MASKED','P1_PHONE');"
    Now, anytime you change the value in P1_PHONE_MASKED, P1_PHONE gets updated with just the number values from P1_PHONE_MASKED.
    You can also add validation to the function to ensure that the length of the phone number is either 7, no area code, or 10, including area code. Normally, the mask should handle validation, but as you can see, to make this work, I had to make the mask more flexible, to allow for alpha numeric values in the first 3 positions and to allow for either 7 or 10 characters. Unfortunately, that means a user could enter something like XXX12 and the mask won't reject it.
    Partial solution to displaying ( ) 999-9999 in the masked input field P1_PHONE_MASKED when initially selecting a record for display.
    1) Make the Source Type for P1_PHONE_MASKED "SQL Query"
    2) Insert a query similar to the one below into "Source Value or Expression"
    SELECT
    CASE
    WHEN length(METAREPO.CONTACTS.CONTACT_PHONE) = 10
    THEN
    METAREPO.CONTACTS.CONTACT_PHONE
    WHEN length(METAREPO.CONTACTS.CONTACT_PHONE) = 7
    THEN
    '___'||METAREPO.CONTACTS_2011.CONTACT_PHONE
    END
    FROM METAREPO.CONTACTS
    WHERE METAREPO.CONTACTS.CONTACT_ID = :P1_CONTACT_ID
    This will display 7 digit phone nubers as follows: (___) 999-9999 in the masked field: P1_PHONE_MASKED.
    I wanted to use spaces between the () to make it perfect, but I'm unable to get this to work. I've tried things like:
    ' '||METAREPO.CONTACTS_2011.CONTACT_PHONE
    LPAD(METAREPO.CONTACTS_2011.CONTACT_PHONE,3,' ')
    Both of which work in PL/SQL Developer, but not in Apex. I believe this is because HTML collapses spaces by default.
    I would like very much to resolve this last issue. Any suggestions?
    Regards,
    Gary

  • Query for Customer site Phone number and Fax number  in Oracle Apps

    Dear All,
    Can anyone guide me how to write qurey for Customer site phone number and Fax number for Acive customers.
    Thanks in advance.
    Best Regards
    NRC

    Hi Team,
    This is a shipping report in header level we have the customer information with site address. The requirement is along with site address we need to show the phone number and Fax number .For this we need to write the formula column.Thes are the comes through HZ parties only. I have no idea how to achieve this.
    Best Regards
    NRC

  • Can we see Mobile phone number instead of home fax as the first option while adding a new number in iPhone 5s?

    Hello,
    While adding a new phone number in Iphone 5S, when you hit 'add phone', it displays the phone number types in this sequence - home fax, radio, home and then mobile. Is there a way to configure this sequence to see mobile as the very first option? i save only mobile numbers and dont see much use in home fax and other options. I know we can delete other phone number types, but i want to save few cliks for convinience
    Thanks...

    When you add a new phone number, I think you are talking about the Contacts app.
    Click "home fax" in that display that comes up.  You should be able to change it to something else; e.g., home.
    Then home would come up first.

  • In ios7 now the message sender appears as his nickname (instead of the first name).my contacts list in my iphone was taken from my outlook (exchange), so for each contact there is several details as (first name, last name, phone number,fax,..... And nickn

    In ios7 now the message sender appears as his nickname (instead of the first name).my contacts list in my iphone was taken from my outlook (exchange), so for each contact there is several details as (first name, last name, phone number,fax,..... And nickname) the problem is that now I see the sender identity in messages as a nick name while in the incoming calls I see the first name ( this problem appeared only in ios7
    Please help

    check in settings > mail contacts calendars, and in the contacts area you should be able to change how the names are viewed
    dante

  • How to turn off the sound the phone makes when using the keyboard to input a phone number?

    My iphone 5 has recently started to make a very annoying beep when im using the keypad to enter in a phone number.Would anyone be able to tell me how to turn it off please.Thanks

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

  • Phone number concept

    It seems to me that the phone number concept in Maemo (don't know in other platforms) is maybe correct in technical sense, but not in usability sense. Let me explain.
    The phone number field allows only a limited set of characters to be input: 0-9, *, #, p, w (anything else?).
    At first glance, this seems to be a good idea, in order to prevent users to enter letters for instance, by mistake.
    In fact however this is a severe limitation, for the following reasons:
    1. If I want to read the phone number, it is quite difficult to visually follow long numbers, for instance if I want to check it, read it to someone or use it to dial on another device. It is much better to separate the number in shorter clearly distinguishable groups by spaces or dashes.
    This however cannot be done on N900 on the phone.
    Spaces can be entered in Ovi Suite, these are even transferred to the phone, there is no problem  to make a call properly, but the phone is not able to identify the caller if the number is entered with spaces.
    2. It is very good, that multiple phone numbers can be assigned to a single contact. It is also excellent, that there are field labels allowing to distinguish variants such as telephone - telephone home - telephone work etc. (by the way, an icon would do a better job)
    But, there are numbers for a contact, where these labels are not sufficient and additional note or tag is needed, for instance a phone to neighbors, secretary, temporarily out of service etc.
    There is no possibility to enter these notes, other than entering a new contact with the specific tag, but in such case the nice feature of having all numbers of the contact in one record is lost (and with 1500 contacts, this solution would even make it worse).
    Since my old (6 years) smartphone has this possibility, as the numbers were imported into the N900, they came also with the tags written behind the number in brackets. But, this time N900 is not even capable to dial these numbers. In order to get the numbers functional, I had to remove all these tags manually.
    I must say that I feel this as a strong drawback of the contacts features and it can make me even to drop N900, because I simply need support for such information and workaround is too laborious.
    I suggest, that instead of putting limitations to the user, it would be much more useful to simply dial all numbers found in the number field (processing properly the +, *, #, p, w, of course) and leave out anything in (  ) brackets (for instance). It is so simple!
    If an old smartphone can do this, I expect that tablet should be also capable of an intelligent approach.
    If the entry limitation is really considered as benefit for users, ok, as an option it is fine, even as default setting. But it should not be killing the usability.
    Is there any solution to this issue?

    you've raised some good points, but imho its getting worse, not better..
    With regards to tags, this is something I think pioneered on Nokia handsets (first time I saw it was on the first Symbian S60 7650 phone)
    Each number has a type: business, fax, mobile, home, phone
    and each number has a tag.. the defaults now are blank, home, business.. but on S60 handsets you can give them tags..
    Business Phone (helpdesk) 1234567
    Business Phone (reception) 5553333
    for example is something I had on my phone for the place I worked..
    However, The N97 (iirc) was one of the first S60 handsets to loose this ability.. The 5800 handset, the first S60 5th edition, had the ability, the N97 (the second S60 5th edition handset) did not.. and the N900 does not..
    Bring back custom tags.. its very ordinary without it..
    I doubt we'll ever see them on a Maemo / Meego handset

  • Can you retrieve an Apple ID with just credit card and phone number details?

    My partner, a self-confessed technophobe, has had his iPhone for 18 months - it was set up by his mobile network provider (Orange UK) whose customer support has been worse than useless, keeping him on hold for around 2 hours so far and cutting him off twice.  He's only just bought his first ever computer, at the same time that his iPhone stopped working, before he had time to back up any of his songs, apps etc.  He's just got a replacement iPhone from our local Apple Store but there's no way he can restore his previous purchases as (what he thought was) his Apple ID... isn't.
    Because his old phone had v3 software, he apparently never had to input his Apple ID - only the password.  Presumably Orange set him up with an Apple ID (but didn't give him the details) as the only email address he's ever knowingly had isn't recognised as a valid Apple ID.  Try to reset the password by email and the Apple ID system isn't clever enough to spot an unrecognised email address, advising a new password will be emailed with no email ever arriving (not even in junk mail).  (Incidentally, I tried to reset the password on an Apple ID I know isn't valid - my work email address - and it still appeared to have sent a password reminder by email, rather than pointing out the ID doesn't exist!).  Attempting to reset the password by answering the security questions results in the answers being incorrect, which they're most certainly not.  Since he got his original iPhone, he's purchased hundreds of songs on iTunes.  He's clearly been sent receipts somewhere, but we have no idea where.
    Apple Store staff are, as usual, brilliant, trying their very best to help, but their hands are tied when it comes to iTunes support, which they tell me is operated as a separate company in its own right (they don't even have access to them by telephone, and iTunes support refuse to talk to me or my partner on the phone).
    iTunes support is sending us around in circles, offering up the same tried-and-tested advice time and again, which we've told them many times does not help. They continue to issue the same advice even after sending them a frustrated email headed "PLEASE READ OUR PREVIOUS EMAILS BEFORE RESPONDING!".
    I've tried, in vain, to contact iTunes support again about this (they even closed the support ticket even though the issue isn't resolved), and have had no response.
    There must be some way Apple can locate my partner's Apple ID if supplied with his credit card details, mobile phone number, billing address and examples of recent purchases?  We've already provided this information to iTunes support but, once again, it's fallen on deaf ears and we've had no response from them.
    Can anybody help us get to the bottom of this?  As it stands, he's spent a fortune on hundreds of iTunes songs and apps which he is legally entitled to download, but which he can no longer access, and iTunes support isn't very supportive.
    (Incidentally, I recently switched allegiance from 100% Microsoft products to 100% Apple and I'm mightily impressed with their regular customer service, but iTunes support is a completely different animal.)
    A million thanks to anyone who can help!

    Follow the insrructions here:
    Create an iTunes App Store account without a credit card
    Note, usually you can't change to a no-payment method but can create a new account that is onlyy good for free apps.

  • How do I dial a phone number from Forms6i ?? OLE2,DDE??

    How do I dial a phone number from Forms6i ?? OLE2,DDE??
    Is it do-able??
    I have a contact form that has the contacts phone number, etc... I would like to add a button to dial the number which would open the phone line (probably through my modem) and dial the number ... where I would pickup the receiver and wait for connection...
    I need an example or a "How to" link or something where if I take the time I can get it working....
    IF not, is there software to do it?
    Thanks, Bill

    Yes, great! I will check into my modem... but I remember years ago have a c program that I used to send error messages through the modem to my alpha-numeric pager. With that I started with that c program being called from REXX IBM language and it spoke modem language...
    Is there another forum that would handle this type of request? what do you call telephone support? telephony? communication links? ....
    Thanks for the input!

  • Can I buy out my contract to transfer phone number to company account?

    Hello,
    Currently I have a droid phone under contract with Verizon, and I am eligible for an upgrade in June, 2015, but can buy out of the contract for $180.  I also am going to get a company phone for my job, but it is required that this be the iphone 6 and it can be either with Verizon or AT&T service.  Ideally I would like to just transfer my number to my company account and use the iphone full time, but unfortunately it's not that simple.
    Here are the options I've been informed I have:
    1) Have the company take over my account for no cost, but the company would have to pay $649 for a new iphone since I'm not eligible for an upgrade, and I'm not sure I can get this added cost approved.
    2) Get a separate company phone number and iphone that the company will buy for me (I think it will cost them $200).  Not ideal because I would either lose my phone number or I would have to keep paying for my phone and carry 2 phones around.
    Here's the option I want, but nobody can confirm it is possible:
    3) I buy out my old contract for $180, then transfer the phone number to my company phone where I would get a new contract and a new iphone.  I'd be fine paying the $180 out of my pocket since I'd make that up in savings in 3 months.  I was on hold with customer service while 2 service people were debating whether or not this was possible, but after 15 minutes of dead air I had to leave to attend a work meeting, so I don't know if it's possible.
    Here's the option I don't want to but may be forced to do:
    4) Start a new contract with AT&T through my company and have my number ported over.  I would then pay the $180 to Verizon to get me out of my obligation.
    In case anyone has actually taken the time to read all this, here are my questions:
    - Is Option #3 actually possible?  Has anyone done it?
    - Is Option #4 possible?  If it is possible, wouldn't Verizon just prefer I do option #3.
    - Are there any other options I'm not considering?
    Thanks for any input you can give

    Hello Kinquana,
    Yes, I'm available for Early Edge upgrade, but from what I can tell it doesn't really offer my company any savings versus them just buying the iphone up front at full price, and it probably just creates complications for the IT department.  Either way, it's an additional cost that I would have to get approved.
    So it sounds like my best option is to just move my number to AT&T and cancel my verizon account?  Seems like you would not want that to happen.
    I do not have any issues with my current phone, but my company requires that I get an iphone due to compatibility with email and security.
    Thanks for the quick response

  • Paid $60 - for a phone number rather than a subscription? Please chime in and help a newbie

    Hi, first a quick rant: I'm an EXTREMELY frustrated new user. I have spent the last hour trying to figure out what I just purchased and what I can do to get an explaination, but whoever created this website did so without a new user in mind. Quickly: I need help trying to determine what I just purchased and what to do from here. As Quickly as I can explain what's going on: My friend in Croatia told me he spent $60 for unlimited calling. He can apparently call anywhere to phones - as we made several calls to landlines in both the states and england from his computer. We've since left his place. As I'm traveling to many countries, I figured this was a great idea, I'll pay up front instead of purchasing credits. I whipped out my credit card and paid $60 after chosing a number. After about an hour, the transaction cleared on my account with a renewal in 12 months. I went to make a call and it said I didn't have enough credit. After trying to figure out what happened all I can determine is that I might have paid for the use of a phone number for 12 months and not a subscription. Now of course after trying for several hours trying to find out how to contact Microsoft or Skype - or Whatever help center - for the past hour and finding they deflect all help to their help pages that comes nowhere NEAR helping me or explaining what has happened - and if I made a mistake how to correct it. I apparently need to spend more money for a premium account to get actual advice or any kind of resolution. Any company that takes money and expects a new user just to GET it, without providing some human interaction is a horrid company. So I paid for something I didn't want and can't use. I THINK. But I can't request a refund or help because I haven't paid for a premium account. Can anyone shed some light on this? Thanks so much; I realize you're probably just a user of the service like myself.

    Skype Rip Off people on Renewal $30 Number $30 Calling Plan Why Skype and Microsoft Sucks: My Subscription Order No.[removed for privacy] paid and delivery but not working I would like to know why the subscription I bought is not available I can make phone calls please fix the problem Skype is not a solution but a big problem since microsoft took over very disappointing
    Yes they told me I will have to pay $30 for my number and $30 for my 12 months subscription now they said they did not they are liarsMy subscription is not working neither after several months tried to fix the problem no one from skype neither from Microsoft tried to contact me is very painful to paid skype for a phone services and they just do nothing but laughing in your face Skype and Microsoft let me tell you something in your face you both sucks big time you are nightmare what a pityI would love to sue skype since they are not providing with the service I contract with then my business is suffering for negligence in delivery my subscription that I bought but is not working long time ago I will follow a class action against skype please keep updatedPORT A SKYPE NUMBER http://community.skype.com/t5/Skype-Number/Port-Skype-Online-Number-to-another-provider/td-p/1529827https://consumercomplaints.fcc.gov/hc/en-us/articles/[removed for privacy]-Keeping-Your-Telephone-Number-When-Changing-Service-ProvidersWhen all is said and done Skype is a phone service provider and as such they must allow your number to move. It is required under Section 212 of the Small Business Regulatory Enforcement Fairness Act of 1996. The SBREFA '96 required portability in the largest 100 Metropolitan statistical areas. Then in 2003, the requirement was expanded to ALL carriers regardless of geographical location.
    In order for a number to be ported, roughly speaking you must live in the area code's geography. So, you can't port a New York number to Iowa.
    If you have a problem porting your phone number from one service provider to another, first try to resolve it with the service provider. If you cannot resolve the problem directly, you can file a complaint with the FCC. There is no charge for filing a complaint. You can file your complaint using an FCC online complaint form. You can also file your complaint with the FCC’s Consumer Center by calling 1-888-CALL-FCC (1-888-225-5322) or 1-888-TELL-FCC (1-888-835-5322) for TTY; faxing 1-866-418-0232; or writing to the Federal Communications Commission at:
    Federal Communications Commission
    Consumer and Governmental Affairs Bureau
    Consumer Inquiries and Complaints Division
    445 12th Street, SW
    Washington, DC 20554

  • Create a customer code using the First letter of a customer name and the last 4 digits of a phone number

    I am trying to create a form where one the customer has input their name and phone number it should grab the first letter of the customer's name and then the last 4 digits of the phone number.
    I am not very good at coding, and have VERY VERY limited background in coding. I understand a little (the basics pretty much).
    I am thinking i am not using the right expression to get what i want. Below is the statement I have write. This is just to find the first letter of the name, have an idea on how to get the phone number but i was trying the use the "left" and "right" functions but they wouldn't work. More specifically the left.
    form1.#subform[0].CustCode::initialize - (JavaScript, client)
    str = CustName;
    var a = str.substr(0, 1);
    any help would be greatly appreciated.
    If more information is needed, please don't hesitate to ask.

    If you switch your language to FormCalc you can use the Left and Right functions, e.g.
    Concat(Left(Name,1) , Right(Phone,4))

  • Use custom field for work phone number in CUCiLync

    Hi,
    I have searched and tried out all sorts of different settings for enabling/changing the way CUCiLync searches the Active Directory (AD) for contact phone numbers.
    But no matter what setting I use in the HKEY_CURRENT_USER\Software\Cisco Systems, inc.\ Client Services Framework\AdminData and/or HKEY_CURRENT_USER\Software\Cisco Systems, inc.\ Client Services Framework\Active Directory hive, CUCiLync still uses the default for Work phone number. The default for this is to use telephoneNumber, the value that I wish to use is the ipPhone field.
    The registry values that I have tested so far are these.
    HKEY_CURRENT_USER\Software\Cisco Systems, inc.\ Client Services Framework\AdminData
    LDAP_AttributeName_businessPhone
    LDAP_AttributeName_primaryPhoneNumberForSearches
    LDAP_AttributeName_otherPhone
    All set to ipPhone, and I have also tested to set it to another field in AD that contains the same value as the ipPhone, that is in my case extensionAttribute5.
    HKEY_CURRENT_USER\Software\Cisco Systems, inc.\ Client Services Framework\Active Directory
    BusinessPhone
    PreferredNumber
    DisableSecondaryNumberLookups
    First two set to ipPhone and the third set to 0, and I have also tested to set it to another field in AD that contains  the same value as the ipPhone, that is in my case extensionAttribute5.
    The above values comes from these two urls,
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucimoc/8_5/english/installguide/config_active_directory.html#wp1141403
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucimoc/8_5/english/installguide/config_active_directory.html#wp1137551
    The later url have this
    Table 3-9 LDAP Registry Subkeys
    Subkey   Names
    Description
    LDAP_AttributeName_primaryPhoneNumberForSearches
    Specify   the phone number that you use to resolve most LDAP queries. This value must   match one of the values specified for the following LDAP keys:
    •LDAP_AttributeName_businessPhone
    •LDAP_AttributeName_homePhone
    •LDAP_AttributeName_mobilePhone
    •LDAP_AttributeName_otherPhone
    The   values that are valid for the LDAP attribute keys listed above are:
    •telephoneNumber
    •homePhone
    •mobilePhone
    •otherTelephone
    •a   custom LDAP attribute value, for example, myCustomPhoneNumber
    The   value of the LDAP_AttributeName_primaryPhoneNumberForSearches key must match   one of the values in the list above, for example, telephoneNumber. Otherwise,   the value of the LDAP_AttributeName_businessPhone key is used.
    The version of CUCiLync is 8.5(3)-4.5.9, that is the latest I can find on the support download page, have also tried with earlier version 8.5.(1).
    Does anyone have any suggestions for how to achieve this, if at all possible?
    Roger Kallberg

    This is the reply we got from TAC.
    Regarding to your query, Can you please go through the attached flow diagram (also you can see it in the link given below). I hope it will clarify more on the telephone number display behavior in office communicator.
    As per this flow chart presently your setup is working as designed. As per the design, the number should be in E.164 format in order to be available in MOC.
    You have AD in your network as a source, so  OCS pulls this information from LDAP it is integrated with. As per Microsoft, here you need to add Normalization rules to OCS to normalize the number into the E164 format.
    http://technet.microsoft.com/en-us/library/bb964002%28office.12%29.aspx
    Phone number display for MOC contact:
    •-          OCS will not provide a contacts number unless it is correctly formatted to the E.164 standard.
    •-          The Address Book Service on OCS processes the contacts phone number and attempts to normalize it.
    •-          If correctly normalized then the number is inserted into the OCS address book.
    •-          Communicator will only display this normalized number if it is properly formatted in E.164 (+13125551234).
    •-          The E.164 standard defines an international numbering plan for public phone systems.
    •-          In the E.164 standard, each number contains a country code, an area code, and a subscriber number.
    •-          Each phone user has a globally unique number.
    •-          In Cisco UC Integration for Microsoft Office Communicator, phone numbers in E.164 format must begin with a plus character ("+").
    I have done some research to your first question. Can you please just go through the blog given below from the Microsoft.
    http://blogs.pointbridge.com/Blogs/schertz_jeff/Pages/Post.aspx?_ID=26.
    It tells that If the numbers not in E.164 format then the number will not appear in office communicator if LDAP integrated. Can you please check with Microsoft to see their inputs on this.

Maybe you are looking for

  • Photosmart Premium all-in-one series C309a

    got a new router and computer.  downloaded drivers tried to install wireless connection and it failed saying   "The wireless radio is not functioning."  What does that mean and how do i fix it? Thanks Liz

  • Loading initialization parameters

    I am trying to load parameters from web.xml in the init() method. But, in vain. What's wrong with the following code? package test; public class TestServlet extends HttpServlet{      public void init(ServletConfig config) throws ServletException {   

  • Bug report: No Label template

    See http://htmldb.oracle.com/pls/otn/f?p=24317:164 Problem: The text item is slightly off, not in the center of its TD I am using the No Label template and the label position is "Above" Since the No Label template generates a empty SPAN tag, it shoul

  • SWF/Flash help required

    I've been trying to edit a .swf document to change the logo from a website navigation bar but not having any luck. The file can be found at http://steevo.bravehost.com/navbar.swf. I'm trying to swap the current green/yellow logos to this and would li

  • Spreadsheet report failing

    Hey, I am trying to run several Oracle reports through portal using the PDF, and SPREADSHEET desformat's, but the spreadsheet format is failing for reports that are bigger then 350 or so pages, but works fine in PDF. I am getting the following error