International Addresses and Phone Numbers

How do people typically deal with International Addresses and Phone Numbers? Do you use special attributes for these?

I know how to create attributes, the issue is how to create the right set of attributes that can be used for all given international telephone and addresses?
I would think there would be some sort of predefined standard for doing this but if you have to create your own custom attributes just to do this, then that's not really a great thing.
Oracle or the ldap standards people whomever they are should include all the object classes and attributes for International Telephone numbers and addresses so all you need to do is add the objectclass to your users and use them!
Sorry it just doesn't make sense to have everyone create these...

Similar Messages

  • HT4528 my iphone synced with my computer and left my contact info but erased the address and phone numbers but left notes and email addresses on the phone and computer

    Is there any way to restore the addresses and phone numbers to the contacts on the iphone and computer that were erased after it synced?

    Then chances are you won't be able to get them back.  You can try restoring from your last iPhone backup to see if they're still there.  To do this, prior to connecting your phone, open iTunes on your computer and go to Preferences; on the Devices tab check "Prevent...from syncing automatically".  Then connect your phone to your computer and when it appears in iTunes on the left sidebar right-click on its name and choose Restore from Backup.  Of course, if your backup has already been overwritten with a new backup that doesn't contain the missing contact information then this will not restore it to your phone.)  When done you can go back to iTunes Preferences and re-enable automatic syncing if you prefer this.

  • Names, addresses and phone numbers have dissappeared from my list, favorites and tx mess

    Suddenly I went to favorites and realize most of my phones have no names only phone numbers.  I went to all contacts and they are not there. I lost names addresses and all info.  I need to know if is still there? in the memory? or I need to do it all over again.

    Try importing your contact list from Verizon Backup Assist.
    If you do not have that, then upload them from your saved contacts in your computer.
    If you do not have that, then try to restore your backed up phone data from a previous backup on itunes.
    If you still have none of those, then yeah.  You're SOL and will have to manually insert everything.  I recommend afterwards getting the backup assist app and backing everything up so you don't have to do that ever again.
    Hope this helps!

  • Question in regards to multiple addresses and phone numbers in one contact...

    Hello iPhone users!
    I have a quick question in regards to contacts. If I have a name of a restaurant that has two separate phone numbers and two separate locations, do I need to create a separate contact for each location and each phone number? For exmaple, let's say the Restaurant name is Luigi's and there is one location in Boston and one in New York. I wish to enter both of the addresses and both of phone numbers.
    Ideally, how would I combine both of these? I think to further qualify is if I'm able to combine both entries into one contact, how can I differentiate the phone numbers? I realize there are labels that I can customize (i.e. name one label Boston and the other New York) but it seems if I do that, then those custom labels appear to carry over for any other new contact I create which is not ideal.
    Am I on the right track or am I over thinking this? Does anyone have any suggestions?
    Many thanks!

    Thanks for your reply!  I'm just trying to figure out the best way. Basically I was hoping to create one contact entity with the restaurant name and withing that contact the following:
    1. Addresses for both locations
    2. Phone numbers for both locations
    3. A label to distinguish which number belongs to what location
    So at the moment, I have one contact and the label for one phone number is "main" which is not ideal because it doesn't distinguish what location the number is calling. Let's say I create a custom label called "Boston". It works fine and I can assign that label to that number. The drawback is that now the custom label "Boston" now appears globally in my custom label list. I guess this is fine with one or two labels but then I can see how this might get out of control with more labels being added. I was hoping a custom label would apply only to that one contact and not be globally available to all other new contacts.
    If I do create a custom label and delete it from my list, it then goes away for the contact that I assigned the label to.
    So given that information, I guess if I don't want the custom label list to get out of control, it's probably best to create a separate contact for each location... i.e.
    1. Luigi's - Boston
    2. Luigi's - New York
    I was just hoping to have everything consolidated into one contact as opposed to creating multiple ones. It seems like that can't be accomplished unless I have a huge list of custom labels in which I probably won't use them to apply to other contacts : )

  • Iphone email or phone call from stoed addresses and phone numbers on ical

    on i phone can i add phone number or email address on ical and the clik on phone number or email address to make a call or email

    First, you have to updates your contacts info using Address Book.

  • Change the format of addresses and phone numbers in iphone

    Plz help me out, Im not able format my contacts. I do not want any hyfans in the contact number, I tried with i cloud but it's just waste of time, there is an article in Apple community which I followed but no use, how to delete those bloody hyfans in contacts of my iphone5c on iOS 8.0.2.

    You can send Apple feedback here: http://www.apple.com/feedback/
    "buy android software" make no sense, but if you wish to buy an Android based phone, that is certainly your prerogative. But no one here cares.

  • In trying to type a list of names,addresses, and phone nos. when i tried to print i got each categor

    I set up a list of names, addresses, and phone numbers and when I went to print the printer only printed each
    column on a different sheet of paper.  I would like to have it printed exactly the way I typed it.  How can I do
    this?

    I think if you use structure array syntax you should get the results you want.
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
          <cfset session[Session.SurveyField[arrayindex]] = Form[Session.SurveyField[arrayindex]]>
    </cfloop>
    Or probably even easier.
    <cfset session = duplicate(form)>

  • Advice on indexing names and phone numbers

    Hi!
    I currently have a database with 2,6 million records containing names, addresses and phone numbers. I would like to do fast search like: Give me all persons called "Hansen" living on "Elm street". More complex queries like "%sen" living on "%street%" with a phone number like "3888____".
    I'm running on a huge Windows 2000 server with Oracle 8.1.7
    I currently have indexed the fields with interMedia and substring indexing. Below is my setup.
    BEGIN
    ctx_ddl.create_preference('tdk_store', 'BASIC_STORAGE');
    ctx_ddl.set_attribute('tdk_store','I_TABLE_CLAUSE',
    'TABLESPACE tdk_imt STORAGE (INITIAL 4M NEXT 512K PCTINCREASE 0)');
    ctx_ddl.set_attribute('tdk_store','K_TABLE_CLAUSE',
    'TABLESPACE tdk_imt STORAGE (INITIAL 4M NEXT 512K PCTINCREASE 0)');
    ctx_ddl.set_attribute('tdk_store','R_TABLE_CLAUSE',
    'TABLESPACE tdk_imt STORAGE (INITIAL 4M NEXT 512K PCTINCREASE 0)');
    ctx_ddl.set_attribute('tdk_store','N_TABLE_CLAUSE',
    'TABLESPACE tdk_imt STORAGE (INITIAL 4M NEXT 512K PCTINCREASE 0)');
    ctx_ddl.set_attribute('tdk_store','I_INDEX_CLAUSE',
    'TABLESPACE tdk_imt STORAGE (INITIAL 4M NEXT 512K PCTINCREASE 0)');
    ctx_ddl.set_attribute('tdk_store','P_TABLE_CLAUSE',
    'TABLESPACE tdk_imt STORAGE (INITIAL 4M NEXT 512K PCTINCREASE 0)');
    ctx_ddl.Create_Preference ( 'tdk_wordlist', 'basic_wordlist' );
    ctx_ddl.Set_Attribute ( 'tdk_wordlist', 'substring_index', 'true');
    end;
    CREATE INDEX tdknavn ON tdk ( navn )
    INDEXTYPE IS ctxsys.context
    parameters ('WORDLIST tdk_wordlist STORAGE tdk_store');
    CREATE INDEX tdkadresse ON tdk ( adresse )
    INDEXTYPE IS ctxsys.context
    parameters ('WORDLIST tdk_wordlist STORAGE tdk_store');
    CREATE INDEX tdktelefon ON tdk ( telefon )
    INDEXTYPE IS ctxsys.context
    parameters ('WORDLIST tdk_wordlist STORAGE tdk_store');
    Query like this gives horrible execution times:
    SELECT count(*)
    FROM tdk
    WHERE contains(navn, 'bedsted') > 0
    AND contains(adresse, 'gade') > 0
    A query like this caused a dump:
    SELECT count(*)
    FROM tdk
    WHERE contains(adresse, '%gade%') > 0
    Is this a stupid approach??

    Yes it caused a core dump! End-of-file on communication channel.
    I just learned about the catsearch function. I read in this forum that is doesn't support wildcards until 9i. So I have to use contains for now.
    But... is catsearch faster than contains when you combine to catsearch' in one where clause?
    Another question: Is catsearch only faster than contains when you combine it with structured data??

  • Viewing addresses (with phone numbers) in Mail

    Is it possible to view addresses with phone numbers by selecting the address button/icon in the toolbar in Mail? All I see are the email addresses and it would be convenient to see the phone numbers as well...
    Any advice...thanks.
    cj

    Not a way I know to do this now. As for what is coming in the future, there is no way to know unless Apple announces.

  • I have four devices on one Apple ID, i have separate emails and phone numbers for each device but when I tried to add one to my iPod, it said that the email was already in use.

    I have four devices on one Apple ID, i have seperate emails and phone numbers for each device but when I tried to add one to my iPod, it said that the email was already in use.  I have tried many things and the only guess I have is that either someone else has this email as their iMessage but is fake or it wasn't taken off my old iPod when I reset it.  Any ideas on what to do?

    Thanks but that doesn't give me the information I need.  I am putting an email on my ipod for people to contact me for iMessage and FaceTime but when I put the email in, it gives me an error saying that the email cannot be veirified because it is already in use.  My Apple ID can be varified, just not the email that they will contact me with.

  • HT1296 How can I stop and delete facebook names and phone numbers from my iphone

    How can I stop facebook names and phone numbers from being downloaded to my iphone and how can I delete the ones that are already there?

    A better way might be
    Settings > Facebook > Contacts > turn off.
    There are other Facebook settings you might want to leave on. But I also prefer to turn off Calendar there as well to keep every Facebook friends birthday from clogging up my calendar app.

  • Retrieve information and phone numbers from a stolen iphone

    I need to retrieve the information and phone numbers from my stolen iphone

    Not possible.
    What To Do If Your iDevice Is Lost Or Stolen
    If you activated Find My Phone before it was lost or stolen, you can track it only if Wi-Fi is enabled on the device. What you cannot do is track your device using a serial number or other identifying number. You cannot expect Apple or anyone else to find your device for you. You cannot recover your loss unless you insure your device for such loss. It is not covered by your warranty.
    If your iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should have done in advance - before you lost it or it was stolen - and some things to do after the fact. Here are some suggestions:
    This link, Re: Help! I misplaced / lost my iPhone 5 today morning in delta Chelsea hotel downtown an I am not able to track it. Please help!, has some good advice regarding your options when your iDevice is lost or stolen.
      1. Reporting a lost or stolen Apple product
      2. Find my lost iPod Touch
      3. AT&T. Sprint, and Verizon can block stolen phones/tablets
      4. What-To-Do-When-Iphone-Is-Stolen
      5. What to do if your iOS device is lost or stolen
      6. 6 Ways to Track and Recover Your Lost/Stolen iPhone
      7. Find My iPhone
      8. Report Stolen iPad | Stolen Lost Found Online
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
      1. Find My iPhone
      2. Setup your iDevice on iCloud
      3. OS X Lion/Mountain Lion- About Find My Mac
      4. How To Set Up Free Find Your iPhone (Even on Unsupported Devices)

  • HT4623 I've lost my contacts and phone numbers when I updated...how do i get those back?

    How do I get my contacts and phone numbers back after I finished the upgrade?

    jnet30705 wrote:
    How do I get my contacts and phone numbers back after I finished the upgrade?
    Hopefully you backed up that info on your Mac or PC. Do a restore and they should all come back. If you have an iCloud account you can recover them from there as well.

  • HT4906 When I synched my phone to the iCloud, I lost my contact list and phone numbers.

    When I synched my 3G phone to upgrade the operating system and to join i cloud, I lost my contact list and phone numbers
    How can I get the list and phone numbers back???
    allen8844

    If they aren't in your contacts on icloud.com when you check from your computer, you would have to restore them from a backup source.

  • Can't send photos to recipients as it requires a "slash" in their address and phone has no e-mail/MMS slash option

    I cannot send a photo as an MMS or as an e-mail as the recipient's address requires several slashes (/) which is unavailable on my iPhone 3GS keypad. How can I send them without using the slash?

    You may want to turn iMessage off, wait a few minutes, then turn it back on on each of these phones (to re-register the phone numbers with the iMessage server).  Also confirm that you have the correct date, time and time zone on each of the phones (in case a recent change to DST resulted in incorrect setttings on your phones).  There are more troubleshooting steps here: http://support.apple.com/kb/TS2755.

Maybe you are looking for

  • Mail service on, SMTP on, but clients can't connect -- please help a novice

    Hi all, We use 10.4 Server on a G5 Xserve. A few days ago we had a problem with our server being used for spam. That was fixed quickly enough, but the problem is: while being fixed, the mail queue accumulated more and more mail, and it wasn't going o

  • MGW1_CREATE_BOM- plant not updated in ECC 6.0

    Hi, We have upgraded SAP from 4.7 to ECC 6.0.  In SAP 4.7 Program with FM MGW1_CREATE_BOM  works fine . In ECC 6.0 While creating BOM through the same program via FM MGW1_CREATE_BOM everything is created OK- but the plant that i enter in the header s

  • Regarding Versioning of OBIEE11g reports

    Hi , I want to check the techniques fo report versioning in OBIEE such as using source control /within OBIEE11g . Can we integrate the source control with OBIEE 11g for report versioning . I know , it can be done for RPD .

  • How do I download Mountain Lion for free?

    I purchased my MBP in July last year. I need to create a bootable drive of OS. In the app store, it is not showing OSX Lion. There is only the option of downloading Mountain Lion, but that isn't free. If I am correct, I am entitled to a free upgrade,

  • Set Key Photo on MacBook Pro, not reflecting on devices - 10.10.3/8.3

    I don't believe this has worked previously, but I was hoping for the new updates to Photos (10.10.3 update) and iOS 8.3 that the Key Photos would work better.  I've selected the Key Photo on the Events album on the MacBook, shows correctly no problem