Sony Ericsson W580i - Remove Dashes as Last Names

I used the iSync plugin from http://www.feisar.com to sync my W580i with iSync. Everything went well except for the fact that with contacts that I have input no last name in Address Book they display on my phone with the first name as expected and then a dash ("-") in place of the empty last name. How can I remove these dashes? I have read http://docs.info.apple.com/article.html?artnum=302470 but it just states what is happening. Anyone have a fix?

I'm afraid there's no further answer I can give.
Because iSync and the phone require First and Last name to be entered for successful syncing, there's no way to remove the dashes that appear in place of the empty last names. That is the way iSync works around the limitation of phones with a single Name field, rather than separate First and Last name fields.
If you choose not to enter data required by the phone and iSync, then unfortunately, you have to accept the (probably undesired) side-effects of that decision.
The solution is quite simple though, and as the Mac Address Book has many more fields than just First name, it makes sense to use them, especially if you happen to know 2 or more people who share the same First name. (It also helps to include people's last names in Address Book's data for when printing postal labels for instance).

Similar Messages

  • Connect to Sony Ericsson W580i via USB

    I want to be able to connect my Sony Ericsson W580i to be able to transfer music files to the music player.
    The first time I tried, it appeared on the desktop, but ever since it has not worked.
    Can anybody help please?

    Your mobile handset is supported, but like all other supported devices with the exception of those manufactured by Motorola, you can only synchronize using iSync via Bluetooth.
    If your computer does not have built-in Bluetooth, you can add it by purchasing a D-Link DBT-120 USB Bluetooth adapter. This is the only device explicitly supported by Apple for such applications.

  • Sony Ericsson w580i

    Using a powerbook g4 with os 10.4.11 and isync 2.4
    When syncing my Sony Ericsson w580i cellphone with mac AddressBook, the data from AddressBook gets transferred correctly over to the cellphone but, new data I had entered manually into the cellphone does not get synced back over to AddressBook. Isn't the syncing supposed to work both ways?
    All for now.
    Marc

    Yes, syncing is supposed to work in both ways.
    As the Sony Ericsson W580i is not natively supported by iSync, I would suggest contacting the providers of the plugin you are using for assistance. They should be able to advise you.

  • Sony Ericsson W580i is not supported

    Hello!
    My new SonyEricsson W580i is not supported, that makes me sad.
    Someone knows when a update for isync will come?
    Because i have like 500 Nr. and i don´t want to do them by typing them.
    Please tell me if someone knows something.
    best regards
    frank

    No need to be sad!!
    The Sony Ericsson W580 has been supported by iSync 2.4 using an iSync Phone Plugin since 6th August 2007.
    See here: http://mobile.feisar.com/plugins.html

  • Removing punctuation in last name field

    Hi all,
    I have to write an API to an email system which does not accept punctuation as part of the mailbox. One of the fields I am using to build the mailbox is the persons last name. The problem I am experiencing is the use of punctutation in the last name field with individuals that have names for example like O'Leary, O'Shea, Baker-Newbie, etc... How would one write the syntax to remove punctuation from a column?
    Thanks,
    Mike

    I would consider the Oracle TRANSLATE function:
    How you do things depends on what you want to do with the punctuation characters. If you are going to omit then:
    TRANSLATE(last_name,
    'ABCDEFGHIJKLMNOPQRSTUVWXYZ!£$%',
    'ABCDEFGHIJKLMNOPQRSTUVWXYZ')
    or something like it (just add the characters to omit to the end of the 'from' string) take care to escape any quote symbols in your from string.

  • Need to remove LAST NAME only in merged letter

    Here's my quandry. Client supplied a mail list with full name in column one. It's okay for the addressing portion, but in the salutation she wants to remove just the last name. I already merged my 2900 name list.
    So I have:
    Mary and John Smith
    123 Main St.
    Your Town, State Zip
    Dear Mary and John Smith,
    Then body of letter.
    I would need a way to search for any space and word before the comma and return in this one line only. Remove the space and last name so the comma slides over after John. I don't want to strip out any other words before a comma. I checked and I believe no line in the letter has a hard return following a comma.
    Doable? If so, how?

    Or you could search for \s[\l\u|\-]+(,)$ and replace with $1 to remove the last name and leave the comma next to the last word in the first name. this must be done as a find/change rather than a GREP style.
    Colin's method is nice in it can be a style, but it leaves "space" between the last visible name and the comma because the text is still present. Colin "escaped" the comma in his version, too, but is seems to make no difference in my test.

  • 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

  • ISync: Sony Ericson 750i: How do I sort contacts by last name?

    Unlike apples adressbook, my cellphone (Sony Ericsson 750i) does not have different fields for "first name" and "surname", which means, that all my contacts are sorted by first name.
    How can I change this?

    On the phone, go to *Contacts > Options > Advanced > Sync Order*
    or see page 59 in the user guide:
    http://www.sonyericsson.com/cws/download/1/167/202/1192990327/K750iUG_R2bEN.pdf

  • Mandatory condition to be removed for Last name.

    I wanted to remove the condition that the last name is a mandatory filed.Could anybody suggest me how i can go about it?

    Hi,
    Do you mean mandatory field of table or for the form? if it is for the table execute the following sql command -
    alter table table_name modify ("COLUMN_NAME" NUMBER(10,0) NULL) --change the attributesFor the form field, remove the validation for that field and this will solve the problem, it will not validate if you leave it blank or no data entered.
    Hope this helps,
    M Tajuddin
    http://tajuddin.whitepagesbd.com

  • How to remove mandatory field for Last Name in Personal Data Editing Screen

    Hello All,
    CUrrently we are using BP_ ERP5ESS1.31 SP5 & SAP_ESS  603 SP5.
    All my ESS Services are Displaying fine and working from Portal.I am having the requirement like I need to make Last Name as Non-Mandatory field in Personal Data. While Editing the PD Screen, there  i will find the * mark for Last Name filed, i checked through the Global Personalization Make as Mandatory is Not Personalized its showing, i think its defualt prpoerty,so i am unable make any changes from Portal w.r.t Global Personalization.
    I checked in SPRO-- Personal Admin> Custmomizing User Interfaces>Change Screen Modifications, there i find the respective Module pool for those Infotypes and country Specific..
    I cheked forModulePool MP000200--> P0002 and Variable Key-40(For India)  P0002 - NACHIN -- LastName only OF Radio Button is Selected all other Rado buttons are not selected.
    I Checked in V_T588MFPROPS view there for 0002 Infotype P0002 -- NACHN Mandatory check box is Checked all other check boxes are Unchecked.
    How to make that Last Name field as Non-Mandatory in Personal Data Edit Screen, where i need to make the changes.'
    Please list out the Steps..Where i need to do the configuration. And i assigned all the required ESS roles on the backend.
    Thanks in Advance
    Adapag

    Hi,
    I don't think supressing through Global Personalization will change the business logic. Within the Business Logic it checks for the mandatory field.
    After the changes I guess you need to make the changes accordingly.
    The below link might be of some help.
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?spaceKey=profile&title=ESSPersonalInformationUIenhancementwithoutmodification&decorator=printable
    Please correct if I am wrong.
    Cheers-
    Pramod

  • Lack of First and Last Name Reversal in Address Book

    I just got a new iMac and transferred the contents of my old eMac running on OS 10.3---(latest) using the Mac transfer system. Problem: in the address book most of the cards do not respond to the Preference setting for First or Last name first. Some do, they toggle back and forth as I change the setting, but most stay unchanged with the Last name first. All respond properly to changes in the sort setting.

    I know the phones only have a single Name field, but there is such an option to change the sort order and display! Did you look in the menu I listed?
    I've just tried it with 5 Sony Ericsson phones I have with me here (W610, K800, K510, Z610 & W200) and that I use iSync with on a daily basis and the option is there and it works perfectly.
    It's in the W810 manual on Page 62:
    http://www.sonyericsson.com/cws/support/products/userguides/w810i
    where it says:
    "To select sort order for contacts *> Contacts > Options > Advanced > Sort order* to select sorting by first or last name"
    With *Sort order* set to *By first name* it displays:
    Anne Baker
    Bill Smith
    Charles Jones
    With *Sort order* set to *By last name* it displays:
    Baker, Anne
    Jones, Charles
    Smith, Bill

  • 2.0 firmware causes some contacts with same last name to not be displayed

    After upgrading to 2.0 it appears that only the first contact for a given last name is shown in contacts. Interestingly, if i search for that last name all of the contacts show up, so they are indeed syncing to the phone but are not able to be viewed in the regular contact list. I tried restoring the phone (imported settings from last sync after restore) and still have the same problem. Anyone else see the same thing?

    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).

  • Sony Ericsson's limits in Contact fields

    I just purchased a Sony Ericsson z610i and have synced my calendar and contacts. I found one big disappointment with my contacts, but perhaps I'm missing something. If I have a 2nd line in the "street address" field in my Apple Address Book, or if my street address is too long, it gets "cut" in the SE phone. Is that a limitation to the contact fields in SE? No 2nd line allowed? Only so many characters in the street address? Obviously, partial addresses are worthless.

    Hi,
    I have a SE z710i. I am having some issues as well.
    I was wondering if you have problems syncing contacts which don't have a first or last name, but do have a company name.
    Once I look through my phone on these contacts, I see "No name" as the listing.
    Is there a way get the phone to display the company, in these cases?
    Any help appreciated.

  • 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).

  • To SONY management not Sony ericsson Management, please don't do the same mistakes.

    Please Don’t Make Same Sony-Ericsson Mistakes
    by USER-986393 » Thu Oct 27, 2011 3:40 pm
    Congratulations on your Erricsson's share acquire, I must say i have been Sony phone holder from the day SONY CDM-Z1 was created, forced my self to stick with SE... and now happy to come back to SONY again. I would like to talk about couple of things...
    Response:
    The major fall of SE is the fact that they did not listen to fans and most importantly customers. we complained so much over Xperia X1 and Xperia X10 until SE forced us to purchase other brands due to lack of response. so please, responding to complaints is critical when there are so many better phone makers out there.
    Lack of future vision:
    Look at the Galaxy S, Galaxy Sii, Iphone... you know what they have in common? light years technology for the same price as Caved in SE phones. Arc vs Sii?... SE was against technology for some reason, for instance. who ever was against dual processor and how much it would attract customers, needs to find another company to put down. Lack of LTE?, how can someone not find that as something a cell phone can use in the future? Market share in USA? why would someone not give the US attention, no one buys a full priced phone these days, that only worked when there was no contracts. these days i don't mind a contract as long as i am getting a phone a i can not afford. also i never understood this frequency difference, why did SE wait until iPhone 4s marketed the idea a "world phone" that works anywhere? why did SE insist on making an American version and an international version? example ARC LT15A and ARC LT15i is it SO HARD to make a phone that has all the frequencies LT15Ai? really? who ever was against that idea needs to go as well.
    I will assume who ever is reading the example i mentioned above is grasping the importance of it... it's as simple as this SE would have been more successful had more people bought SE phones, i am interested in the ARC LT18A, well there is only LT18I that wont work 3g on At&t. here are the problems that you will face... 1 - a happy innocent customer that did not know that, purchased a LT18I (international) and realized SE customers service in Canada or USA that it won't work in the U.S. on 3g...   2 - a frustrated customer like me who knew about the difference from previous mistakes and decided to buy an iphone instead just bc of the being neglected or carelessness from SE towards people in the U.S.  either way, wither those two two points were shocking to you as a SE manager, or a common fact that is not important enough... that manager needs to go.  with a tahnk you note for loosing market share in the U.S. deserves an excelence in that actually.
    Wrong Focus, right focus was a little too late:
    SE phones especially in 2011 was way behind any other company in smart phones, yes the ARC S was maybe a nice attempt but simply not enough... the world is advancing really fast, if you dont catch the train, then your about to bankrupt. it took forever to jump on really powerful phones and instead there so many variations. you can get a cyber-shot but not a Walkman.. you can get a walkman phone but not as smart as the p900 you can get the p900 but not as slim as the p600. SE was competing with its own self ... lets FOCUS, get your stuff together and make a Quality phone not Quantity phone. (GOOD JOB ON THE TABLET) the variations are based on needs not confusing differences. The ARC was a great phone, but SE had missed the train.
    THE UPDATES:
    The most frustrating customer service i have ever experienced, and when updates come out, they come out first in Nordic places then in middle east country by country... giving every day more fuel to angry customers wondering when they will be lucky to get an update ... why can't there be one global update for all phones and different updates to phone carriers for each country. make it easier, it does not take a company purchase to do so.
    Announcements:
    it was frustrating, just like it is right now, i still don't know when ARC S comes out. oh wait i am in the U.S. it comes out "WHENEVER" does it look like i am happy? i need a new phone, how SE expect me to purchase an ARC S when i don't know how long i am waiting for it and there is GALAXY and Iphones released in the markets hovering around me every day?
    USA, USA, CHINA, USA:
    Why was the U.S. not a focus, please someone answer!
    Creativity:
    androids are awesome operating systems, they are simply great and simply work every single time you use them. i believe, i gave SE so many ideas, non of them were integrated. to be able to distinguish your self from the rest of the pack; you need to be the alpha. simply having the most powerful phone is one factor, Xmore R is another, crazy led designs. look at the Tablet S, it's not the thinnest, it's not the cheapest, it's not the most powerful, yet it's unique in design. and for the market with the dull flat tablets, who ever designed it should design your new phones. the ARC design was AMAZING but lacked the items that are enough to give it a competitive edge in the market.
    Charging:
    Why is it only micro USB is the main charger, Why can't it be that and another EASY WAY OF CHARGING, why do we have to wait tell apple go to conductive charging? SONY come up with two ways of charging, micro usb is great cause every one has either a BB or an android somewhere. but imagine just placing your phone on something without me connecting... I AM BUYING.
    Pricing:
    SE charges an arm and a leg, when Galaxy Sii and iphone 4s are $200.00... do you not thing there is something wrong here?
    Accessories:
    I have suggested times and times, make more accessories, lets compare phones covers for the Iphone and the Any SE phones... the amusing aspect is, why did not SE see what I see?
    Cool names PLEASE:
    the ARC is a way to start after 10 years of naming products like fax machines... I need to see Jima, president, awesome... less chemical equations of fax machine names. LT18a, imagine I tell my friends have you seen the LT18a or have you seen the Sony ARC?
    FM:
    Really?  your research says in 2011 people won't buy a phone without FM?  and the customers would also do the twist dance from the joy of knowing the phone has FM.  it's 2011, perhaps you need to look in your research again.
    SonyEricsson does not see the need for a dual processor for an android that won't support it yet:
    that right there shows the difference between a company with a long vision and another with a short one.  my answer to that statement, please set down get some popcorn as you are just about to watch S ii and iphone 4S a chance to be light years ahead of you, and sell millions of more phones than you.  just because someone that works at SE has a very short vision ruining a whole company. president of Syria bashar alasad, believes that his country is under control.  the achievements of democratic countries did not impress him and the fall of Lebian, Egyptian, and Algerian presidents did not get him to even think twice about what is happening.  it amazes me how people can be so selfish and short visioned.
    Waterproof: 
    Great idea, where is the phone, i am in the U.S. while you are at it, let me suggest accessories.  a helmet accessory that would station that phone on my helmet while i am racing... right there i can buy a phone that is weather proof records 720 p and when i am done from my athletic even i can use it as a phone.  knowing SE, don't even think about that idea, and i will get an email saying we only have a shoulder accessory for now thank you for inquiring.
    Closing fan websites?
    xperiablog.net, um........ ? 
    now there are people at SE that need to be promoted,
    Updates had gotten faster and better, but they still need more work
    unlocking the boot loader is a great i dea
    designs started becoming extra beautiful
    SE website is beautiful
    facebook page is great
    xmor r, phone screen size EXCELENT
    forum support is getting better
    there many many things I can bring to the table, question is, SONY are you going to do the same Mistakes? or am i going to changes? perhaps you need to hire me, so I can get something done. how open are you to changes? how open are you to listen to your customers and fans? how open are you to realize the completion and take actions to be ahead of the curve? how open are you to realize that the Video games on cell phones are only fun the first 5 minutes but after that iphone 4s is better?
    LTE, Gorilla Glass, conductive charging, Unique design, unified phone, focus on 1 - 3 phones for the whole year, interactive customer service, New logo, Battery performance, UNIQUE DESIGN, top notch camera, waterproof, why dual when you can go Quad... go in to the market with a bang and bigger bang with it's prices. Start cranking AT&T and Tmobile, Verizon and Sprint from now in the U.S. chop chop you have work to do...
    I wish you the best of luck SONY and hope to see interesting phones coming from your end.
    Solved!
    Go to Solution.

    lov2bugu, you said things the exact way I wanted to express them! It was like watching me talking to a SONY’s CEO.
    I don’t really think they are not aware of the problems. SONY used to be the 27th largest company in the world, according to Forbes. They are now at the 456th place!!
    They are aware of their problems and I think, the move to buy the remaining stocks from Ericsson, is a move to bounce back into the market. They found the right time, where the stock is too low and the economics around the globe don’t  look promising enough. I have to recognize them, all the bad phases they went into this year … hacking attack, loss of their factory in London, global economic climate etc.
    But these are not excuses good enough not to produce quality, reliable and technologically advanced goods. I think that SONY is not to blame for the bad course SE has had. I think this is what SONY wants to revert. They want to “embody” all their technology … BRAVIA engines (TV Tech), Walkman and Cybershot tech (using Carl Zeiss lenses), VAIO (Comp tech) and finally PS3. Ericsson tried to integrate them, unsuccessfully.
    Overall, I thing SONY, did not have or did not attempt to have the control of SE, hence, the answer you got back from SONY “… anything related to SE must be posted on the website of SE”. I think they will bounce. Just give ‘em some time. I’m willing to give them time, but not too much though. Just because I’ve always loved this brand!

Maybe you are looking for

  • Error in starting dbconsole

    Hi, Actually I have gone through many posts based on this thread. but no one really have a proper solution for it ...I have a situation like this, I have a 2 node cluster on 10RAC. I was able to access respective oem url's from both the nodes before.

  • Hp laserjet professional 1100w. cannot close paper tray. paper-stop not movable?

    I managed to install and print but cannot close the paper tray.  There is a little paper-stop that prevents the paper tray from closing. Seems like it should be able to fold under or something.

  • Using derived obj as a parameter in one of the methods

    Hi I have a class "class1", which is the parent class. Another class "class2" is derived from class1 (extends class1) In class3, there is a method "method3" that uses "class1" obj as a parameter. I need to call the same method "method3" in class2 als

  • Oracle 9i or 8i on Linux

    Currently we are using 8i for our data warehouse and I am very interested in seeing what performance improvement people have seen when they have upgraded to 9i. I ask this question as every piece of marketing I have read so far says they have seen im

  • My MacBook Pro is not shutting down automatically.

    I have to always force shutting down my MacBook Pro with on/off switch. When I pick shutdown from the dropdown menu a sign of circle on the blank screen goes on endlessly.