Nokia -Grouping Contacts with more than 1 number

I want to sync my phone with MS Outlook in such a way that it groups multiple numbers (eg home, mobile) for 1 contact under that contact's name.
When I do it syncs to the SIM.
For contacts with more than 1 entry it sets up contacts as: John Smith; John Smith1 etc
When I copy from SIM to phone memory it keeps these names
Does anyone know how to do this - I did manage it with the same handset (now replaced) but can't remember how.
It feels like I should be able to sync to the phone memory rather than SIM, but the Mokia PC suite doesn't seem to allow me to do that.

I'm From South Africa and the sim cards we have in this country just save one number per contact and I would also get the same result with any simcard that is available in this country if I tried what your trying to do.
Assuming, There aren't many different types of sim cards then your sim card will also not be able to store multiple numbers to the same name. They just aren'r designed that way.
The same will happen if you copy your contacts from phone to sim. It just can't be done 
Show your appreciation. Hit that kudos button real hard

Similar Messages

  • JSR-75 PIM API creating Contact with more than one Number (Phone,Fax ...)

    Hi everybody
    I try to create a contact with more than one Phonenumber using the method contact.addString(...) .
    Contact with one single number is no Problem but contacts with more than one Number are ignored and are not stored to the phonebook. I try to add the Numbers using a for -loop. Is there an other way to solve this Problem?
    please Help.
    Thank You.

    Wonder if you have made any progress - if so,
    could you share ?

  • How do I share my contacts with more than one group? I really don't want to have re-type them into a different group. Help!

    How do I share my contacts with more than one group without having to re-type them into each group?

    Without "pretending" to be yourself on the other phone (change settings) there's nothing else you can do.
    iOS devices are meant to be single user and can't view iCloud.com the same way a Mac or PC can do.
    You need to find a desktop or laptop machine (Mac or PC) to log in at iCloud.

  • When I request an email be sent to a contact with more than 1 mail address Siri asks which address to use. How do I select one of them?

    When I request an email be sent to a contact with more than 1 mail address, Siri asks which address to use. How do I select one of them?

    I should clarify:
    When I request an email be sent to a contact with more than 1 mail address, Siri asks which address to use. How do I select one of them by voice in response to Siri's question?
    Bueller? Bueller? Anybody?

  • Contact with more than two Addresses on Bold not all showing on device

    I have a blackberry bold and noticed that when i input more than 2 addresses in Outlook on the desktop, the 3rd one (called "other") shows up on the desktop but does not show on the handheld?  is this a bug or is there a trick to having all three addresses visible?  It seems odd to have the Other Option if it is i not able to be viewed remotely?  Many thanks for anyone's help here.

    You will need to "map" that other address field to your BlackBerry for syncing.
    1. Connect your BlackBerry® device to your computer.
    2. Open the BlackBerry Desktop Manager.
    3. Double-click Synchronize.
    4. On the Configuration tab, click Configure synch.
    5. Select the Address Book check box.
    6. Click Configure > Advanced Settings.
    7. Click Field Mapping.
    8. Map a field in the right column to a custom address book field in the left column.
    9. Click OK.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • SMS pick phone number randomly if the contact has more than 1 phone number

    When sending SMS, it pick the phone number randomly if the contact has more than one phone numbers. SMS ignore the default phone number too. Anyone having the same issue?

    You might try something like this:
    INSERT INTO
        DUAL_TARGET
            PERSON_NO,
            FNAME,
            CNUM
    SELECT
        PERSON_NO,
        FNAME,
        CASE
           WHEN COUNT(*) > 1 THEN
               NULL
           ELSE
               MAX(CNUM)
        END AS CNUM
    FROM
        DUAL_DATA
    WHERE
        CTYPE = 'cc'
    GROUP BY
        PERSON_NO,
        FNAME;

  • Tables with more than one cell with a high number of rowspan (ej. 619). This cell can not be print in a page and it must be cut. But I don't know how  indesign can do this action.

    Tables with more than one cell with a high number of rowspan (ej. 619). This cell can not be print in a page and it must be cut. But I don’t know how  indesign can do this action.

    set the wake-on lan on the main computer
    The laptop's too far away from the router to be connected by ethernet. It's all wifi.
    No separate server app on the laptop, it's all samba
    The files are on a windows laptop and a hard drive hooked up to the windows laptop. The windows share server is pants, so I'd need some sort of third party server running. Maybe you weren't suggesting to use Samba to connect to the windows share though?
    I'm glad that you've all understood my ramblings and taken and interest, thanks The way I see it, I can't be the only netbook user these days looking for this kind of convenience, and I certainly won't be once chrome and moblin hit the market.
    Last edited by saft (2010-03-18 20:38:08)

  • How do you get the integer of a number with more than 10 digits

    I can't seem to be able to get the integer of a number with more than 10 digits.
    ex:
    integer(12345678901.3) returns -539222987 when it should really return 12345678901
    Thanks for the help
    (I'm on director 11 at the moment)

    You can write a Parent script to represent Big Integers. I wrote some code to get you started. It consist of two classes - "BigInt" and "Digit".  At this point you can only add two "BigInts" and print out the value with a toString() function. Note that you pass a String to the "BigInt" constructor.
    In the message window you could enter something like:
    x = script("BigInt").new("999999999999")
    y = script("BigInt").new("100000000000000000004")
    z = x.add(y)
    put z.toString()
    And the output window will show:
    -- "100000001000000000003"
    Here are the two Parent scripts / Classes
    -- Digit
    property  val
    property  next
    on new me, anInt
      val = anInt
      next = 0
      return me
    end new
    -- BigInt
    property  Num
    property  StringRep
    on new me, aString
      Num =  script("Digit").new(Integer(aString.char[aString.length]))
      curNum = Num
      repeat with pos = aString.length - 1 down to 1
        curNum.next = script("Digit").new(Integer(aString.char[pos]))
        curNum = curNum.next
      end repeat
      return me
    end new
    on add me ,  Num2
      curNum = Num
      curNum2 = Num2.Num
      result = curNum.val + curNum2.val
      if result > 9 then
        carry = 1
      else
        carry = 0
      end if
      result = result mod 10
      sum = script("Digit").new(result)
      curSum = sum
      curNum = curNum.next
      curNum2 = curNum2.next
      repeat while curNum.ObjectP AND curNum2.ObjectP
        result = curNum.val + curNum2.val + carry
        if result > 9 then
          carry = 1
        else
          carry = 0
        end if
        result = result mod 10
        curSum.next = script("Digit").new(result)
        curSum = curSum.next
        curNum = curNum.next
        curNum2 = curNum2.next
      end repeat
      repeat while curNum.ObjectP
        result = curNum.val +  carry
        if result > 9 then
          carry = 1
        else
          carry = 0
        end if
        result = result mod 10
        curSum.next = script("Digit").new(result)
        curSum = curSum.next
        curNum = curNum.next
      end repeat
      repeat while curNum2.ObjectP
        result = curNum2.val +  carry
        if result > 9 then
          carry = 1
        else
          carry = 0
        end if
        result = result mod 10
        curSum.next = script("Digit").new(result)
        curSum = curSum.next
        curNum2 = curNum2.next
      end repeat
      StringRep = ""
      me.makeString(sum)
      return me.script.new(StringRep)
    end add
    on toString me
      StringRep = ""
      me.makeString(Num)
      return StringRep
    end toString
    on makeString me, digit
      if not digit then
        return
      end if
      me.makeString(digit.next)
      put String(digit.val) after StringRep
    end makeString

  • Stuck with Exact fetch returns more than requested number of rows!

    Hi
    I've written the following code where i want to insert an id number into a package to update a record.
    declare myvar NUMBER; begin SELECT App.id into myvar FROM people_units pu LEFT OUTER JOIN(
    SELECT pu.id,pu.record_date,pu.unit_instance_code,pu.person_code,pu.calocc_code,pu.record_date As received
    FROM people_units pu) App ON pu.person_code = App.person_code AND Trunc(pu.record_date) = Trunc(App.record_date)
    WHERE pu.id = 79474; ebs_units_pkg.AddProgressHistory(myvar,'AUTO');end;
    when i run the query in SQL i get the error message ORA-01422 - Exact fetch returns more than expected number of rows.
    Can anyone help me rseolve this error? The select statement may return more than one row which im guessing is the cause of the problem. If the select statement does return more than one value. 2 rows for example, i would like the package to update the 2 rows. Ive never really done any work with PL/SQL before so at a loss at where to begin!!

    Do the select and the update all in one step. It will be much easier then.
    Example:
    UPDATE people_units
    SET yourColumn = calculatedValue
    WHERE id = 79474

  • After using Tab Groups earlier today, now anytime I close FF with more than 1 tab open, FF does NOT ask me to confirm before closing

    After using Tab Groups earlier today, now anytime I close FF with more than 1 tab open, FF does NOT ask me to confirm before closing. FF always has asked me to confirm in the past and no settings were changed prior to trying the Tab Groups. Then when I reopen FF all the tabs that I had open are still there. I've tried refreshing FF and clearing history but that didn't work. It's almost as though FF thinks the window and tabs I have open are a tab group and it won't let me get rid of that group. How do I stop the Tab Groups now that I got them? Or is there something else going on? None of this was happening until I played with the Tab Groups this morning. I was curious what it was --- that's going to get me killed one of these days lol.

    Thanks. Somehow the "Show my windows and tabs" box had gotten checked. I know I didn't check that box and the "Warn me when closing multiple tabs" box has always been checked. Like I said, it was all working fine until I tried the tab groups so I'm wondering if maybe that checks the "Show my windows and tabs" box by default?
    Anyway, it's fixed now. Thanks so much!

  • Contacts related with more than one account

    Hi guys,
    I'm having the following issue on my CRM OD Service Request project.
    The usual data flow for our attendants have to be: Identify the account, identify the contact who are calling on the account home page and then create the service request on the contact home page, so my service request is already filled with the account and contact information.
    The problem is that when the contact is related with more than two accounts, the account that appears on my service request is the primary account of the contact.
    For example, if Paul is related to the account A and B and he calls to talk about a problem related with the company B, the attendant opens the company B home page, then he opens Paul's contact home page and then create the SR and the SR comes with the info of company A (probably because company A is Paul's primary account) and not of the company B.
    Do you know if have anyway to avoid this problem?
    Thanks in advance
    Rafael

    Rafael, this is normal behavior for CRM On Demand. I would recommend that you submit a enhancement request to CRM On Demand customer care.

  • How: can i get a specificated item from a list with more than 100.000 items

    Hi,
    i have a very large list and i got always an exception that the list has more than 5000 items and cant query!! But in the default list view i can see, order and filter all items. So how can i do this by c#?

    Hi,
    According to your description, my understanding is that you want to get a specific list item form a list which with more than 100000 items using C#.
    I suggest you can use CAML Query with some condition and set Row Limit to specify the number of items to return.
    Here is a detailed code demo for your reference:
    Client Object Model Access Large Lists/Overcome ListView Threshold while accessing large list
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Anyone with more than one iPhone 6/6+ in same order getting there phones shipped if all your phones didn't have 9-19 when you ordered?

    Our Verizon account has 10 lines and I figure we're paying over $7,000 a year, when I think of how much money total we have payed to Verizon only to be jerked around and around and lied too over and over again really does make me sick.  6 of these contracts have ended and 3 will be up in next couple months and 1 has a year left so the cancelation fees would not be that bad. And with the other big carrier I've heard it might be cheaper on monthly service. All I wanted from Verizon was for them to do whats right.
    I Ordered
    iPhone 6 16gb  gray
    iPhone 6+ 16gb gray
    iPhone 6+ 64gb gray
    iPhone 6+ 64gb silver
    all on the same order. I finished at 3:19 am est and got a date of 10/14 even though all the phones except the 6+ 16 gb gray had 9/19. Got confirmation email at 4:56 will ship by 10/14 I got worried that all the phones would not ship till 10/14 and contacted verizon thru facebook messenger. They told me my phones would ship in the order received and not be held up by a phone that wasn't available in my order. And based on the time of my order she said 9/19 for the 6 and 6+ silver, 10/7 for the 6+ 64 gray , 10/14 for 6+ 16 gray. On Monday morning my status changed to 9/19:):) in the afternoon in changed to unknown. I called 611 and rep went thru all my phones with a time sheet she had and said i should get all but the 6+ 16 gray on 9/19, she said that one you had to order by 3:00 to get on 9/19. On Wednesday my status changed to 10/14 , called 611 again and this lady told me all my phones had 10/14 listed after them. She told me she didn't know  what to tell me that Apple ships the phones and its out of Verizon's hands because they don't have the phones. then she told me to call Apple (and gave me the phone # ) and see if they ship preorders with more than 1 in a order when their available or wait till all are. I called them ( they laughed that Verizon had me call them) and they don't hold up orders . Called customer service back and guy said at least 10 times ....I ASSURE YOU VERIZON WILL NOT HOLD YOUR PHONES!!!  i said of course they're not actually putting them in a box and waiting for all, they're sending them to other people who ordered after me. I asked him if my order could be separated/ rebuilt and do a (jump the line request)  so i could get my phones when i should. He said there is no such thing at verizon....he has worked there many years and if there was he would know. Someone posted # to Internet orders so i called them Thursday morning, spoke to a very nice guy he said my phones that i should get i would and i should get an e-mail later that day and if i didnt get anything by 8:00 pm to call back. Before we hung up i asked if I didn't  get anything did he know if they could cancel/separate/rebuild and do jump the line, he said they can do that and put me on hold while he spoke with a supervisor, he came back and said if nothing happened that day they would do that with my order. I got nothing, called Internet orders back at 8:30pm... went thru my history and asked them to do the rebuild. She transferred me to supervisor who REFUSED to rebuild my order, that is only for orders that have a technical error. She was also the first person from Verizon to tell me that they DO NOT  ship orders in multiple shipments, they will only send when everything is available. She then said your order was given a delivery date of before 10/14  and that's when you'll get all your phones. I let her know that there is nothing about that confirmation that tells me that the phones that I ordered that had 9/19 deliver by dates would not be delivered then, 9/19 is before 10/14.

    Same thing happened to me!!! They made a shady business move and they should be ashamed. Placed a pre-order for an Phone 6 and an iPhone 6 Plus at 2 AM on the 12th and got my pre-order in line just like everyone else did that morning. The 6 said delivery by 9/19 and the Plus was already back ordered to 10/7 but that's fine, I expected the Plus to be harder to get anyway. Being that both phones were eligible it made sense to just place one order given this hasn't been an issue in the past. However, Verizon moved my iPhone 6 pre-order delivery to coincide with the back ordered Plus so they don't have to ship each phone separately!!! I have to wait for something on backorder while the other is ready so they can save on shipping cost. I expected the one that I pre-ordered IN TIME FOR A 9/19 delivery and waited my turn "in (on)line" like everyone else I should get that when it told me that in the checkout, THEN send the Plus when it becomes available. I even have the confirmation email that says "Deliver by 9/19"!!!  Every company you order from sends you the backorder item when it becomes in stock, they don't wait and hold the entire order for it. WHAT A BUNCH OF CRAP!!!

  • Error while running spatial queries on a table with more than one geometry.

    Hello,
    I'm using GeoServer with Oracle Spatial database, and this is a second time I run into some problems because we use tables with more than one geometry.
    When GeoServer renders objects with more than one geometry on the map, it creates a query where it asks for objects which one of the two geometries interacts with the query window. This type of query always fails with "End of TNS data channel" error.
    We are running Oracle Standard 11.1.0.7.0.
    Here is a small script to demonstrate the error. Could anyone confirm that they also have this type of error? Or suggest a fix?
    What this script does:
    1. Create table object1 with two geometry columns, geom1, geom2.
    2. Create metadata (projected coordinate system).
    3. Insert a row.
    4. Create spacial indices on both columns.
    5. Run a SDO_RELATE query on one column. Everything is fine.
    6. Run a SDO_RELATE query on both columns. ERROR: "End of TNS data channel"
    7. Clean.
    CREATE TABLE object1
    id NUMBER PRIMARY KEY,
    geom1 SDO_GEOMETRY,
    geom2 SDO_GEOMETRY
    INSERT INTO user_sdo_geom_metadata (table_name, column_name, srid, diminfo)
    VALUES
    'OBJECT1',
    'GEOM1',
    2180,
    SDO_DIM_ARRAY
    SDO_DIM_ELEMENT('X', 400000, 700000, 0.05),
    SDO_DIM_ELEMENT('Y', 300000, 600000, 0.05)
    INSERT INTO user_sdo_geom_metadata (table_name, column_name, srid, diminfo)
    VALUES
    'OBJECT1',
    'GEOM2',
    2180,
    SDO_DIM_ARRAY
    SDO_DIM_ELEMENT('X', 400000, 700000, 0.05),
    SDO_DIM_ELEMENT('Y', 300000, 600000, 0.05)
    INSERT INTO object1 VALUES(1, SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(500000, 400000, NULL), NULL, NULL), SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(550000, 450000, NULL), NULL, NULL));
    CREATE INDEX object1_geom1_sidx ON object1(geom1) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    CREATE INDEX object1_geom2_sidx ON object1(geom2) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    SELECT *
    FROM object1
    WHERE
    SDO_RELATE("GEOM1", SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(500000, 400000, NULL), NULL, NULL), 'MASK=ANYINTERACT') = 'TRUE';
    SELECT *
    FROM object1
    WHERE
    SDO_RELATE("GEOM1", SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(500000, 400000, NULL), NULL, NULL), 'MASK=ANYINTERACT') = 'TRUE' OR
    SDO_RELATE("GEOM2", SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(500000, 400000, NULL), NULL, NULL), 'MASK=ANYINTERACT') = 'TRUE';
    DELETE FROM user_sdo_geom_metadata WHERE table_name = 'OBJECT1';
    DROP INDEX object1_geom1_sidx;
    DROP INDEX object1_geom2_sidx;
    DROP TABLE object1;
    Thanks for help.

    This error appears in GeoServer and SQLPLUS.
    I have set up a completly new database installation to test this error and everything works fine. I tried it again on the previous database but I still get the same error. I also tried to restart the database, but with no luck, the error is still there. I geuss something is wrong with the database installation.
    Anyone knows what could cause an error like this "End of TNS data channel"?

  • Finding of materials in scheduling agreement with more than 150 lines

    Dear Experts,
    we are in need to find materials in scheduling agreement with more than 150 lines. In standard SAP, materials can be searched only based on item Nos. is there a way we can search by material in ME38. also we noticed that find icon is greyed out in ME38.
    Please suggest.
    One more request is, to create an uplaod program for maintaining delivery schedules for multiple SAs.
    please sugegst if this is feasible.
    Regards
    Raghavendra MS
    9886138875

    I am also curious if anyone has found a solution to this problem.
    We routinely have scheduling agreements that are hundreds of line items. Users find it difficult to find the line item they wish to work with. It would be helpful if we could search by material number or sort the line items by material.
    As Raghavendra mentioned (ctrl+F) functionality is not available in ME33L or ME38.
    Thanks.

Maybe you are looking for

  • How can we boost the use of Webdynpro....?

    One of the issue seems to be the User licensing cost. Companies feel its cheaper to use a 3rd party web application to capture details and just use a RFC/ IDoc/ File to push transactions into SAP, thus using only 1 SAP communications user, instead of

  • Getting Total number of pages in Reports 3.0?

    In the layout model of a report I want to access the value of Total Pages in a format trigger on a repeating frame. You can use srw.get_page_num to get the current page number but I want the curent value of Total Pages. Can this be done? null

  • Comparing counts after conversion: iPhoto to Aperture

    Well, I just finished a major conversion from iPhoto to Aperture. 47,000 photos and videos in a 303 gigabyte iPhoto Library. It was a long and winding road, and I learned a lot about how to compare counts of photos and videos between iPhoto and Apert

  • I got an 3gs iphone and i've updated to ios5 after this my wifi is unavible.how does it happend?

    i got an 3gs iphone and i've updated to ios 5 after this my wifi is unavible.how does it happend?

  • RDS 2012 Deployment guide

    Hi, I'm looking for a RDS 2012 Deployment Guide or best practices document but not finding it.  Basically I'm looking for the equivalent of the document below but for Server 2012 R2 instead of 2008 R2 <won't let me add link to body yet> We are planni