Address book. First & last names order problem

Hi all, I'm having an issue with address book names not appearing in the right order, or more to the point first and last names not appearing in the right order - in fact it's exactly the same as:
http://discussions.apple.com/thread.jspa?messageID=7471811#7471811
However that solution doesn't work.
Essentially, when I go into address book / prefs and click sort by firstname/lastname - the list updates, but when I click 'before last name' / 'following last name' nothing happens at all. The list is ordered by first name - as I want it, but I'm still getting the surname first.
This has transferred over to my Touch as well so it's very frustrating! any ideas?
thanks very much for your time

Hi
You want the first name first.
Investigate this.
Close Address Book
Open the ~/Library/Preferences/com.apple.AddressBook.plist with Property List editor which comes with XCode.
Look for the entry
*ABNameDisplay Number 1*
and change the 1 to 0 (zero)
and save. This sets the name order to 'Before last name'
If you don't have Xcode it might be on your Install DVD.

Similar Messages

  • Why Address Book email addresses without first&last name stacked up under random names when moved to Lion?

    Often in Snow Leopard I would add an email address to my address book wihtout filling in the name fields. For example, Iif I got an email from [email protected], I would "add to address book but never fill out the card completely with the first and last names. The card showed with just an email address. Just left it as the email address. I never had any problems doing this and it always showed up as a single email address on a single card. Oh woe is me! When I moved to Lion I now have multiple unrelated email addresses under some of these "email only" cards. These seem to be the folks who were cards as an email address w/o first and last name fields. Not only that, I have multiples of the "email only cards" and each one has a different set of mutliple "email only" addresses under it. But, at least one of the "email only cards" just has the desired email w no other info. Can I fix this other than manually?
    I now have a disaster of an Address book.

    ok, I've spent some time doing various scenarios.
    I have managed to replicate one scenario which does as you say.
    If my contact in the address book:
    With name details as Peter Foo
    email address: [email protected]
    where there is an inserted space before the name peter, of course this is not instantly noticeable, but it is as if you hit the space bar just before typing the email address.
    Then when I use the Contacts Sidebar in a Write message, it will add the email address like this:
    Peter Foo <" peter"@somewhere.com>
    which of course in invalid.
    but in the address book, if highlight the contact, in the section below the email address in blue -if I click this to send an email the email address is printed exacly with the space and it will send as if nothing is wrong.
    So i'm asking you to check those email addresses which insert incorrectly via the Contacts sidebar. They only do this for me if there is a hidden inserted space at the start of the email address.

  • Problems with envelope-printing in Address Book: First and Last names

    New entries I make in Address Book are printing incorrectly, with Last name then First name. Most of my older entries print correctly as First name then Last name (though oddly I have a small batch of entries I imported ages ago which have always exhibited the same transposition problem).
    I have prefs set to display entries by Last name. Problem entries WILL print correctly if I change this to 'display by First name'. (older entries print correctly regardless of 'display by..' pref).
    I'm having the same problem if I create a new account, which made me suspect the app was corrupted, but not helped by deleting app and re-installing from Tiger DVD then running combo updater.

    Thank you for the suggestion.
    However, it doesn't make sense for the LIST display-order to swap the first-and-last names on an ENVELOPE. Secondly, most of my entries DO print correctly: it's only NEW entries that transpose the first and last names.

  • ADDRESS BOOK: Contacts listing/viewing order

    ever since i synched my iphone my contacts on my iMac list correctly by last name. but now, some contacts are Last, First, and others are First, Last.
    anyone else experience this?
    i would prefer all to be First, Last.

    Try selecting all of your contacts, then open Address Book's card menu. I don't have Tiger in front of me at the moment, but I think the menu item you need is called Reset First/Last Name to Default.
    There's an application-wide preference in the general pref pane for the name display order. And there's a per-card setting for this as well, which would override the application-wide preference. The menu items in the Card menu can change this setting on a per-card basis.

  • Mail and Address Book adding second name to contacts!?

    Each time I recieve an email from, for example, my father, Mail and Address Book change his name to 'Dad Bramhall'. I specifically change it to 'Dad but whenever I sync. to my iPhone the address book entry changes to Dad Bramhall.
    This is so frustrating so please does anyone know how to stop it adding/changing a name? Thanks.

    I have tried editing his name on both my Mac and iPhone address book but it just changes to Dad Bramhall again. He has is name listed as Mark Bramhall and how do I change email preferences? Thanks.

  • Remove First & Last Name Validation in Get Support

    Hi All,
       I have enabled the self management of password for portal users. I have to remove the First & Last Name validation  and make it optional, I have also made (ume.logon.logon_help.name_required = false)  in configtool and taken the restart of the server, but still it is validating the names.
    If anyone have removed the validation for the above, can help me.
    Thanks in advance.
    Regards
    Ponnusamy

    Hi Ponnuswamy,
    the right place to remove the validation is the par file of the login page.
    Get the par file from the portal. unzip the par file.
    under the PORTAL-INF\lib u will find the umelogonbase.jar
    Extrat the jar. get the java file named
    SAPMLogonLogic.java.
    Modify the piece of code in the java file.
    private void performForgotPassword()
            throws IOException, UMException, FeatureNotAvailableException {
            String methodname = "performForgotPassword";
            if (trace.bePath()) {
                trace.entering(methodname);
            try {
                String longUid = this.proxy.getRequestParameter(LogonBean.LONGUID);
                if (longUid != null) {
                    longUid = longUid.trim();
                // check for email id
                String email = this.proxy.getRequestParameter("email");
                String lastName = this.proxy.getRequestParameter("lastname");
                String firstName = this.proxy.getRequestParameter("firstname");
                String noteToAdmin = this.proxy.getRequestParameter("notetoadmin");
                IUser userFrom = UMFactory.getUserFactory().getUserByLogonID(longUid);
                if (email.equalsIgnoreCase(userFrom.getEmail()) &&
                        firstName.equalsIgnoreCase(userFrom.getFirstName()) &&
                        lastName.equalsIgnoreCase(userFrom.getLastName())) {
                    // email matched, assign a new password and email to user
                    String newPass = UMFactory.getSecurityPolicy().generatePassword();
                    IUserAccount ua = UMFactory.getUserAccountFactory()
                                                       .getMutableUserAccount(longUid);
                    ua.setPassword(newPass);
                    ua.save();
                    ua.commit();
    this is the original coding.
    remove the check for last name and first name in that
      if (email.equalsIgnoreCase(userFrom.getEmail()) &&
                        firstName.equalsIgnoreCase(userFrom.getFirstName()) &&
                        lastName.equalsIgnoreCase(userFrom.getLastName()))
    complie the java file. get the class and store it in the umelogonbase.jar . put the jar back in the original place. deploy the par.
    u will get the desire result.
    cheers,
    Sithi

  • Display first last name ecord

    source schema like 
    <ns0:empdetails xmlns:ns0="http://BizTalk_Server_Project3.Schema1">
      <employee>
        <FirstNmae>Kapil</FirstNmae>
        <lastname_x0020_></lastname_x0020_>
      </employee>
      <employee>
        <Firstname>Kiran</Firstname>
        <Lastname>Kumar</Lastname>
      </employee>
      <employee>
        <Firstname>Naresh</Firstname>
        <lastname>Kumar</lastname>
      </employee>
     </ns0:empdetails>
    destination will be 
    <employee>
        <Firstname>Kiran</Firstname>
        <Lastname>Kumar</Lastname>
      </employee>
    the first last name record should come and igoner another records if contains last name or not .

    You can acheieve this using Scripting functoid ( Script Type "Inline XSLT Call Template"). Refer to below XSLT script to use. Map output from this scripting functoid to destination node. 
    <xsl:template name="Employee">
    <xsl:if test="boolean(/*[local-name()='empdetails' and namespace-uri()='http://BizTalk_Server_Project3.Schema1'] /*[local-name()='employee' and namespace-uri()=''][lastname!= ''])">
    <employee>
    <Firstname>
    <xsl:value-of select="/*[local-name()='empdetails' and namespace-uri()='http://BizTalk_Server_Project3.Schema1'] /*[local-name()='employee' and namespace-uri()=''][lastname!= ''][1] /*[local-name()='Firstname' and namespace-uri()='']"/>
    </Firstname>
    <Lastname>
    <xsl:value-of select="/*[local-name()='empdetails' and namespace-uri()='http://BizTalk_Server_Project3.Schema1'] /*[local-name()='employee' and namespace-uri()=''][lastname!= ''][1] /*[local-name()='lastname' and namespace-uri()='']"/>
    </Lastname>
    </employee>
    </xsl:if>
    </xsl:template>
    Thanks,
    Pavan
    MCTS-Microsoft Biztalk Windows Server 2010

  • Address Book flipped last and first names and won't flip back

    Has anyone encountered where after syncing Address Book with Exchange, the first and last names have been flipped and cannot be flipped back? No matter what I do in my Preferences, I can't seem to stop having the address card show the last name first and the first name last. I've tried adjusting the "Sort By" and "Display Order" in multiple configurations and just can't seem to get it back the way it was with First Name then Last Name displayed and sorted by Last Name. Even when I look at the "Template" I see the First Name first and the Last Name second but neither the card nor the list window shows it that way.
    Has anyone else seen this? Were you able to restore control to how you view this?
    Thanks
    JimN

    no responses but I discovered that if I change the sort feature a few times, Address Book corrects itself. Wonderful feature.

  • First name and last name order in contact list

    Actually, my contact list is displayed with the last name before the first name, but everything is fine in Address Book settings (I choosed "First name, Last name" option), and I checked that first name and last name has not been reversed for some reasons between two fields, the first name is right in place, as is the last name.
    So changing this is AddressBook has no effect.
    I tried disabling Chax, without success.
    It could be possible this problem occured when I enabled Microsoft Exchange address book synchronization, (iSync reported 500+ changes in AB database, I did it anyway and noticed no problems in data after synchronization (I still have a backup :-))
    One more thing , the displayed name in the iChat menu extra is correct.
    So, what could possibly change this behavior I did not already check ?
    Powerbook Aluminium 15" 1,2GHz | iPod | iPod Shuffle | iSight | MX900   Mac OS X (10.4.6)  

    Hi Yann,
    If you add details to the Address card in iChat as you add a Buddy then you need the first set of instructions I posted.
    You nee this menu in iChat http://www.flickr.com/photos/90943061@N00/135575605/
    In the second section of this menu you can sort the list.
    <hr>
    Ahhh. I see what you mean.
    iChat does in fact always display First Name, Last Name as you say.
    Adding a Buddy with the names in the reverse order to display as you want in iChat your Address book gets messed up as it is not consistent with those contacts that are not iChat Buddies.
    The only work around I can see is to change all the Address Book entries to match a reverse entry in iChat and then use the Address Book option to display Last Name, First name to show them the 'correct' Fist name, Last name and have them in Last name, First name in iChat.
    11:06 PM Wednesday; April 26, 2006

  • Change Mail COntacts First Name Last Name order

    When opening contacts from Mail the contact names are listed and sorted by First name. How do I change this to listing and sorting my last name first?

    I believe it honors the preferences in Address book. Try Opening Address book and going to Address Book > Preferences > General Tab > Select Name order and sort by.
    Regards

  • Address book - mailing list - sorting order of names

    Generally difficult to edit mailing lists - alter order of names in the list - add email/names in middle of list - drop names from list - copy parts of list to another list - how can you edit a mailing list?

    1 at a time? I don't think so.
    Here is a bonus lesson in selecting multiple items.
    select item 1. Press control+a to select all
    select item1. move up or down several items and hold the shift key while clicking item 2. This selects items 1 and 2 and all items in between.
    hold the control key while clicking random items. This selects any item that is clicked on.
    hold the control key while clicking a selected item. This will deselect that item.
    You cannot drag and drop from a list though. This will only work in the address book itself.
    A contact must exist in the address book that the list is created in to be added to that list.
    You can move or copy contact between address books using drag and drop.
    Drag and drop to move. Hold the control key before dropping to copy. You will see a + sign appear to indicate a copy.
    There operations are universal and not a Thunderbird thing. It has been a part of computer shortcuts since the early 90's.

  • Please help -- Address Book Crashing on Launch, causing problems with Mail

    Problem:
    Address Book crashes on launch. Mail crashes on launch as soon as it tries to access address book. Can't use either program.
    History:
    First noticed problem after an out-of-hard-disk space problem. Had about 2 GB left on the 80 GB hard drive in my 1 GHz iMac G4. Was comparing two very large TIFF files in Photoshop when it crashed because it had used up all the available scratch disk space. Mail and Address Book were also open at the time, along with a number of other apps.
    After re-starting, Mail began crashing on launch. There had been a message open at the time of the first crash, and it appeared that the crash was happening as soon as Mail went to Address Book to find the sender's image for that message. The crash report showed that Address Book was the thread that failed.
    Tried to launch Address Book; crashes on launch.
    Both applications refuse to launch.
    (Have also noticed that Safari crashes when entering text in a field -- good thing I have an iBook to use to post this plea for help!)
    Attempted Solutions:
    Scoured these discussions for suggestions.
    Trashed preferences, re-started & re-launched; no luck.
    Repaired permissions and disk repeatedly until squeaky clean
    Used Pacifist to re-install sync services, address book, mail; no luck
    Re-run Combo Update PPC 10.4.6; no luck
    Have now done a full Archive and Install, re-installed the 10.4.6 combo update and the most recent security update, and verified permissions and disk.
    Problem still persists -- which suggests it's something in my User library, I presume, but I'm out of ideas. Very tired and frustrated -- please help!
    I've copied the most recent pertinent information from Address Book's Crash Log and posted below. Let me know if I need to post anything else, or logs from other apps. Thanks for taking the time to look into my problem, everyone!
    Crash Report:
    Date/Time: 2006-06-17 09:21:16.256 -0400
    OS Version: 10.4.6 (Build 8I127)
    Report Version: 4
    Command: Address Book
    Path: /Applications/Address Book.app/Contents/MacOS/Address Book
    Parent: WindowServer [71]
    Version: 4.0.3 (483)
    Build Version: 115
    Project Name: AddressBook
    Source Version: 4830000
    PID: 285
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0xe183c1fc
    Thread 0 Crashed:
    0 ...apple.AddressBook.framework 0x94c85708 c4_FormatB::Define(int, unsigned char const**) + 212
    1 ...apple.AddressBook.framework 0x94c82db4 c4_HandlerSeq::Prepare(unsigned char const**, bool) + 372
    2 ...apple.AddressBook.framework 0x94c83ae8 c4_FormatV::SetupAllSubviews() + 160
    3 ...apple.AddressBook.framework 0x94c851e0 c4_FormatV::Get(int, int&) + 44
    4 ...apple.AddressBook.framework 0x94c85150 c4_Handler::GetBytes(int, c4_Bytes&, bool) + 44
    5 ...apple.AddressBook.framework 0x94c85108 c4_Sequence::Get(int, int, c4_Bytes&) + 88
    6 ...apple.AddressBook.framework 0x94c85058 c4_ViewRef::operator c4_View() const + 76
    7 ...apple.AddressBook.framework 0x94c844a4 c4_Storage::Description(char const*) + 96
    8 ...apple.AddressBook.framework 0x94c85c04 c4_Storage::GetAs(char const*) + 100
    9 ...apple.AddressBook.framework 0x94c86e6c cacheViews + 240
    10 ...apple.AddressBook.framework 0x94c811f4 -[ABAddressBook nts_OpenContactManagerWithMode:cacheSchema:] + 452
    11 ...apple.AddressBook.framework 0x94c7fd50 -[ABAddressBook nts_InitDefaultContactManager] + 1052
    12 ...apple.AddressBook.framework 0x94c7f88c +[ABAddressBook nts_SharedAddressBook] + 76
    13 ...apple.AddressBook.framework 0x94c7f7c0 +[ABAddressBook nts_CreateSharedAddressBook] + 76
    14 ...apple.AddressBook.framework 0x94c7f6e4 +[ABAddressBook sharedAddressBook] + 80
    15 ...apple.AddressBook.framework 0x94c9d990 -[ABUIController setupAsPeoplePicker:] + 300
    16 com.apple.AddressBook 0x00008e68 0x1000 + 32360
    17 com.apple.AppKit 0x936d3e50 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 928
    18 com.apple.AppKit 0x936c003c loadNib + 240
    19 com.apple.AppKit 0x936bfa94 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 716
    20 com.apple.AppKit 0x93716f64 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 156
    21 com.apple.AppKit 0x937aa930 -[NSWindowController loadWindow] + 204
    22 com.apple.AppKit 0x937aa654 -[NSWindowController window] + 92
    23 com.apple.AddressBook 0x00009224 0x1000 + 33316
    24 com.apple.AddressBook 0x00008f68 0x1000 + 32616
    25 com.apple.Foundation 0x92931ad8 nsnotecallback + 180
    26 com.apple.CoreFoundation 0x90803010 __CFXNotificationPost + 368
    27 com.apple.CoreFoundation 0x907fb0ec _CFXNotificationPostNotification + 684
    28 com.apple.Foundation 0x9291bee0 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    29 com.apple.AppKit 0x936bc338 -[NSApplication _postDidFinishNotification] + 112
    30 com.apple.AppKit 0x936bc224 -[NSApplication _sendFinishLaunchingNotification] + 92
    31 com.apple.AppKit 0x936bbd6c -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 264
    32 com.apple.AppKit 0x936bb914 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 92
    33 com.apple.Foundation 0x92932ae4 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 380
    34 com.apple.Foundation 0x92932944 _NSAppleEventManagerGenericHandler + 92
    35 com.apple.AE 0x914f2960 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 208
    36 com.apple.AE 0x914f27fc dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    37 com.apple.AE 0x914f2654 aeProcessAppleEvent + 284
    38 com.apple.HIToolbox 0x931db0e0 AEProcessAppleEvent + 60
    39 com.apple.AppKit 0x936ba05c _DPSNextEvent + 856
    40 com.apple.AppKit 0x936b9b48 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    41 com.apple.AppKit 0x936b608c -[NSApplication run] + 472
    42 com.apple.AppKit 0x937a6bfc NSApplicationMain + 452
    43 com.apple.AddressBook 0x00008a98 0x1000 + 31384
    44 com.apple.AddressBook 0x00008588 0x1000 + 30088
    45 com.apple.AddressBook 0x00009f68 0x1000 + 36712

    I'm no expert on Address Book, but I can tell you that the files involved in the crash could be HOME/Library/Preferences/com.apple.AddressBook.plist and anything in HOME/Library/Application Support/AddresBook/. It looks like you have ignored this latest folder so far. I would try moving both items to the Desktop, restart, and see whether that stops the crashes.

  • How do I sort my address book by company name

    My new iPhone comes tomorrow. I need to sort my address book in iCloud by company name, not last name first name. If I cant do this is there a third party software I can download for an address book that will allow me to do this?
    PS I am currently not using an iPhone and am manually entering addresses.

    Enable the menu in the Address Book. Then look at the options under View and Sort By.
    More here on sorting: http://www.ramsden.org.uk/8_How_to_sort.html
    And about menus here: http://chrisramsden.vfast.co.uk/13_Menus_in_Thunderbird.html

  • ISync adds a "-" to contacts with First/Last Name Blank

    Hello, I'm using iSync 2.3 with a Nokia 8800 (S40) and Sonyericsson T610.
    When a contact's name is First name:John Last name:Smith, it syncs properly to my phones as "John Smith".
    With First name: John Smith Last name: empty, it syncs as John-Smith-.
    Same goes with a blank first name. Some of the contacts only have a first name written in, anyone knows how I can get rid of the extra -s?

    I'm not aware of anyone called just "John"! Everybody I know has at least a first name and a last name... therefore that is the data I enter into Address Book and iSync works fine for me and all my Sony Ericsson phones.
    If you don't provide the required data, you can't really expect iSync to work correctly.
    There is a reason for this... its because most phones don't split First and Last Name into two fields like Address Book does. So, if you have a contact named just "John" with no last name, when you sync, how does iSync know whether "John" is a First or Last name?
    To get around this iSync adds a '-' into the blank field, so that when syncing back it knows where to put the data.
    The solution is extremely simple, just provide Address Book with a first and last name (which AFAIK everyone has).

  • Address Book sync to iPod Touch problems

    First synch seemed ok but following synchs missing whole groups, new entries and changes, whether made on the pod or the Macbook. Set the itunes to overwrite on next synch, result; no addresses at all on the pod.
    iTunes is now not showing the list of address book categories at all.
    Have reset iSync history, rebuilt permissions and now out of ideas..

    There are so many funky things being reported with syncing both Address Book and iCal, probably no one knows. Mine used to sync fine (before which upgrade I don't know), but now I get only the group names and absolutely no addresses! You might try resetting the sync history in iTunes (advanced tab I think); that has been reported to sometimes help. It could make it worse, though. Good luck.
    Here's a place to report syncing bugs; maybe if Apple hears from enough of us these synching issues will get higher priority:
    http://www.apple.com/feedback/

Maybe you are looking for

  • Need help to resolve the issue for DW4

    when i set up my manage site using php and mysql local server environment it give me an erro saying unidentified error has occur. then when i do them manually i get the connection but my table list do not show at all on my db connection listings. Any

  • Need Assistance in getting SAP NetWeaver 7.02 Installation Guide

    Hi All, Can any one please assist me in getting the installation guides for SAP NetWeaver 7.02 on Service Market place? I searched for its URL but could not get it. Please share it with me. Waiting for your kind replies. Regards, Faisal

  • Downpayment Block

    HI, I want to know where we can configure the vendor down payment block reasons. I want to put a block on every down payment request ( F-47) that is created. Also once it is blocked, where can the user be able to go and remove the block and make the

  • 6303i - display settings not saved!

    Hello - I have updated my 6303i to the latest firmware from the nokia site. Everything works fine but now any chance I make to my display settings (e.g. wallpaper) are not saved, i.e. the change is being populated until the next reboot of the device.

  • Corporate Account/Group Key field in SD Reports?

    Hi, We would like to start populating the Corporate Account field on the General Data > Internal Control tab of the customer master.  This field is available in FI reporting (FBL5N  - as Group Key) but does anyone know if it is available in SD report