N95 number digit grouping

Hi,
I´ve purchased an N95 8Gb NAM (N95-4, RM-421) model. I´m in Argentina but the phone was purchased in USA.
When I dial a number, edit a contact´s number o receive a call the number appears formatted as "## ### ### ###"
Here in Argentina (and I suppose many places outside USA) we use to format numbers differently. We use (###) ####-####, ie. an 8 digit number preceded by an optional 2 or 3 digit area code. As an example my office number is:
"(11) 4864-5xx4"
When I try to dial that number the screen shows
"1 148 645 xx4"
that results very annoying.
Prior to this new N95 8Gb I had a N95-1 where I never had that issue.
How is this setting changed ? Why the phone suppose I must like american digit grouping ? Even when it asks on first power up on country, language and date/time format ?
Nokia - "Connecting people" making them to support themselves after wasting USD800+ on a inflatable dinghy "Flagship" :-(
PS: DON'T EDIT MY SIGNATURE PLEASE !!!

29-Jul-2008 12:00 AM
cjlim wrote:
The N95-4 is a US only version of the N95 8gb. The version for the rest of the world is the N95-2.
I understand.
But, in some parts of "the rest of the world", like Argentina, or several other places in South America, if you want be able to connect your N95 to the 3G networks, you'll need the N95-4 that has it's UMTS band set to 1900 Mhz. European (or "rest of the world" ) N95s are set to 2100 Mhz
Said that, I still don't understand why the number formatting, that's strictly for display purposes is tied to the UMTS band frequencies and not user configurable :-o
Message Edited by marlboro35 on 29-Jul-2008 12:54 AM
Nokia - "Connecting people" making them to support themselves after wasting USD800+ on a inflatable dinghy "Flagship" :-(
PS: DON'T EDIT MY SIGNATURE PLEASE !!!

Similar Messages

  • Function to Generate a Sequential incremental Number by Group of Records

    I have a table with several columns and I need to compute a sequential number by group of records
    FIELD1 FIELD2 FIELD3 FIELD4 FIELD5
    AAAAAA A1 JOHN 01/01/61 NULL
    AAAAAA A3 PAUL 01/01/71 NULL
    AAAAAA A3 MARY 01/01/02 NULL
    AAAAAA A4 CARL 01/01/04 NULL
    BBBBBB A1 MARK 01/01/60 NULL
    BBBBBB A2 ALLY 01/01/60 NULL
    BBBBBB A5 JUAN 01/01/04 NULL
    I need to compute FIELD5. This is defined as a number field.
    Records where FIELD2 = A1 the default value for FIELD5 is zero.
    I am grouping records by FIELD1, FIELD4
    The value for FIELD5 will be assigned from 1 TO 1+N
    For this sample, the resulting records will look like this;
    FIELD1 FIELD2 FIELD3 FIELD4 FIELD5
    AAAAAA A1 JOHN 01/01/61 0
    AAAAAA A3 PAUL 01/01/71 1
    AAAAAA A3 MARY 01/01/02 2
    AAAAAA A4 CARL 01/01/04 3
    BBBBBB A1 MARK 01/01/60 0
    BBBBBB A2 ALLY 01/01/60 1
    BBBBBB A5 JUAN 01/01/04 2
    Question: Can I create a function that loops through the table and compute the value for FIELD5?

    I like this idea, but because F2 must always have the value of ZERO I decided to create a procedure to calculate the value for F5.
    My procedure is below;
    The issue I am having is that I am not sure;
    1) When/where to set/reset the counter ?
    2) Determine in the inner loop if I am still whithin the same group of records ?
    3) When to update the new found value for MBR_MBR_DEP_CD field ?
    CREATE OR REPLACE PROCEDURE LC_BUILD_DEP_CODE_PROC IS
    V_ALT_ID VARCHAR2(30);
    V_EMPLOYEE_SSN VARCHAR2(9);
    --RELATIONSHIP_CD VARCHAR2(2);
    --MBR_DOB         DATE;
    V_ALT_ID_2 VARCHAR2(30);
    V_EMPLOYEE_SSN_2 VARCHAR2(9);
    V_MBR_DEP_CD_2 NUMBER(2,0);
    V_MBR_DEP_COUNTER INTEGER :=0;
    /* FIRST CURSOR */
    CURSOR GET_FAM_ALT_ID IS
    SELECT FAM.ALT_ID,
    FAM.EMPLOYEE_SSN
    FROM TPA_MBR_STG FAM
    WHERE FAM.RELATIONSHIP_CD = '18'
    ORDER BY FAM.ALT_ID;
    /* SECOND CURSOR */
    CURSOR GET_MBR_DEP_CD IS
    SELECT MBR.ALT_ID,
    MBR.EMPLOYEE_SSN,
    MBR.MBR_DOB,
    MBR.MBR_DEP_CD
    FROM TPA_MBR_STG MBR
    --WHERE MBR.ALT_ID = V_ALT_ID
    --AND   MBR.EMPLOYEE_SSN = V_EMPLOYEE_SSN
    WHERE MBR.RELATIONSHIP_CD <> '18'
    ORDER BY MBR.ALT_ID, MBR.MBR_DOB;
    BEGIN
    -- OPEN FIRST CURSOR
    OPEN GET_FAM_ALT_ID;
    LOOP
    FETCH GET_FAM_ALT_ID INTO V_ALT_ID,
    V_EMPLOYEE_SSN;
    OPEN GET_MBR_DEP_CD;
    FETCH GET_MBR_DEP_CD INTO V_ALT_ID_2,
    V_EMPLOYEE_SSN_2;
    IF V_ALT_ID_2 = V_ALT_ID
    AND V_EMPLOYEE_SSN_2 = V_EMPLOYEE_SSN
    THEN
    LOOP
    V_MBR_DEP_COUNTER = V_MBR_DEP_COUNTER + 1;
    UPDATE TPA_MBR_STG
    SET MBR_MBR_DEP_CD = V_MBR_DEP_COUNTER;
    END LOOP;
    END IF;
    CLOSE GET_MBR_DEP_CD;
    V_MBR_DEP_COUNTER :=0;
    END LOOP;
    CLOSE GET_FAM_ALT_ID;
    EXCEPTION
    WHEN OTHERS THEN
    RAISE_APPLICATION_ERROR(-20001,'AN ERROR WAS ENCOUNTERED - '||SQLCODE||' -
    ERROR- '||SQLERRM);
    END LC_BUILD_DEP_CODE_PROC;

  • Is there a limit to the number of groups that can be created in BusinessObjects?

    Hi all,
    We are planning to implement a group structure where there a quite a lot of groups that has to be created. that's why i'm wondering if there is a limit to the number of groups we can create in CMC.
    Thanks in advance for your answers..

    Damien,
         I have NOT come across any limits but you need to be very careful on how many nested layers you create and if you are also going to use 3rd party security like AD &/or LDAP.   Then you will see some performance issues.
    How many groups are looking to create 2,000 / 4,000 / 6,000 ?
    Regards,
    Ajay

  • Need to count the number of groups in a Crystal Reports 2008 report

    I have created a report with three levels of grouping. There are several items in each level.  I want to count the number of groups.  I have tried countdistinct but it counts the number of items in the lowest level of grouping and I want the number of items in the higher  levels.  This is a distribution data base.  I have the data grouped by date, by truck on each date, and by "run" or load on each truck on each date.  I want to count the total number of groups of truck and run, which is the second level of the grouping.  Any ideas? I am fairly new to Crystal.

    Hi Debbie,
         To count the number of groups please try the folling steps:
    1) Create a formula @reset and place this formula in the page header
        whileprintingrecords;
        numbervar i:=0;
    2) Create another formula @evalgroup place this in the group header where you want to count the values.
        whileprintingrecords;
        numbervar i:= i+1;
    3) Create another formula @display and place this in report footer.
        whileprintingrecords;
        numbervar i;
    In order to display the count of details which are printing in the detail section place the eval formula in the detail section and the @display formula in the group footer.
    Hope this helps!!!
    Regards,
    Vinay

  • How to digit grouping in result grid?

    Hello Community & SQL Dev team,
    Asking on behalf of my workmate :)
    ===================
    Does anyone know to enable digit grouping in result grid?
    Display: 999,999,999
    Instead off: 999999999
    ===================
    Yury

    Thanks Barry, the feature request has been submitted:
    https://apex.oracle.com/pls/apex/f?p=43135:7:10812276646823::NO:RP,7:P7_ID:36181
    Forum members: visit the link and vote for the feature if you would find it useful.
    Cheers!
    Marc

  • How to limit row number per group without change new page in crystal report

    Hi All Expert,
    Is there any way to limit row number per group without change new page in crystal report 2008. The reason i do that is due to customer using printer EPSON LQ 300 (dot matrix) always will print in landscape if detech my layout in landscape. Because they need the record always print in 1 page (Letter size) for 2 groups and each group must show 5 records. Example:
    But, in CR2008, if you set the row per group from group section expert, definitely it will change to new page, but I do not want it change to new page. Any Idea?
    In one page (Letter size):
    Group Name: Customer-ABC
    NO  INVOICE  AMOUNT
    1)   INV001     USD100
    2)   INV002     USD100
    3)   INV003     USD100
    4)   INV004     USD100
    5)   INV005     USD100
    Group Name: Customer-ABC
    NO  INVOICE  AMOUNT
    6)   INV006     USD100
    7)   INV007     USD100
    8)   INV008     USD100
    9)   INV009     USD100
    10)  INV010     USD100

    Hi Angie.....
    I guess it is not possible.
    Because if you have one common group for all the 10 records then in one page it will show 10 records under one group.
    I mean i think it is not possible but m not completely sure......
    Lets wait for expert advise....
    Regards,
    Rahul

  • How to transport number range group Configuration in Material Master

    Hi,
    I have this query regarding how to transport number range group in material master from one server to another.
    Problem: There was no number range assignment done for a particular material type. So, i assigned the particular mat. type to a group which had some number range intervals with the help of T-Code MMNR.
    But when i want to transport this config. to other sever, it is only transporting the interval but not the assignment done to that group. In the menu bar only Interval transport option is there.
    Can anybody help me with this I hope the query is clear.
    Regards
    Vivek

    Hi,
    Number range objects can be transported using Workbench requests.
    Thanks
    Kishore

  • CWIP, profit center  number ranges groups difference

    Hi
    Gurus, smarts,
    I have two clients 000,800
    my problem is
    Capital work in progress number ranges for company attachment groups one client i.e 000 showing. but another client 800 not showing the same groups for assignment of company code.
    why like this?
    profit center accounting number ranges groups one client showing but another client not showing same group. T.Code: GB02.
    why like that showing difference groups for each client.  where i can
    please anybody resolve the problem. last four days i am facing the same problem.
    Thank you
    Anil

    Hi
    Please refer GB02
    ~Thanks
    Rajesh

  • Delete a number range Group in internal order

    Dear experts!
    Now, I'm getting some issue about maintain number range group in internal order.
    So I defined a number range group, after that I want to delete the number range group. How do I have to do?
    Best regards, Huy

    Done the question!

  • Costing Variant not assigned to Number Range Group

    Hi,
    I have an error while doing Sales order costing. When i create Sales order and do costing for it (Ctrl+F7) it give me an error,
    "Costing variant XYZ is not assigned to a number range group"
    Where do i need to assign the costing variant to a number range group.
    Please advise.
    Thanks in Advance,
    Safi

    Hi Ramana,
    Thanks for the reply.
    I have mainted the number rnages in VN01.The issue still persists.
    Safi

  • Force Digit grouping different from Regional Settings

    I use Excel sheets with financial numbers in various currencies. Most of them need a digit grouping of 123,456,789, hence my regional settings are set to us that format. Only when I use cells showing India Rupees, I need a digit grouping of 12,34,56,789.
    Is there a way of defining a custom format that I can set in a Macro, and apply it to specific cells only, without changing the way the whole of Excel (or for that matter, the whole computer) behaves, by modifying the regional settings? 
    Thanks in advance for any help!
    best regards,
    Shripad.

    See
    http://chandoo.org/wp/2010/07/26/indian-currency-format-excel/
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Is there session number digit limit ?

    Hello...
    Our job session number in Operator has 14-digit number(Ex. 14011912387).
    Is there session number digit limit?
    If a number reachs the end of column length, is a session number restarted from the first like round-robin?
    Regards,
    jenny

    Its not restarted from 0. You will have to manually set it.
    https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=424331.1

  • Number of Groups in TDMS file?

    Hello,
    Is there a way I can read the number of groups in a pre-existing TDMS file? I want the groups to be named numerically so if I know how many groups there are in a file that was opened, I can automatically set the group name for the next one.
    Kenny
    Solved!
    Go to Solution.

    TDMS List Contents is what you're looking for.
    You can then do an array size on the Group names list that comes out.

  • Inverted comma as digit grouping symbol?

    Is there a possibility to add a new digit grouping symbol in the admin currencies? For a swiss project I need to use: ' (inverted comma).

    Hi AMA,
    that´s exactly the problem.
    Isn´t there a way to manipulate the database to change these Options?

  • Maintain Number range group for Internal order

    Hello,
    I have created Internal order type, now, i would like to create/maintain the number range group for this already created order type.
    When i goto Maint Number ranges for orders->click on Group->Maint and again click on group insert... when i mention here the group name and number range for that group and say save the system in accepting but when view all the groups, i do not find this new group created by me.
    How do i view the newly created group, is there any other steps to be followed? please advice.
    regards,
    radhakrishna

    Hi:
    It's a little late for this post but it is still important to record.
    When you try to create a group in KONK transaction, the system doesn't show the new group.
    This is because there are a inconsistences in the old groups.
    You must execute RSSNR0T1 program to solve the problem.
    Greetings
    Marco

Maybe you are looking for

  • Crystal 11 ActiveX viewer - text displays Cryptic

    Post Author: vhensler CA Forum: General Hello,I have an issue that only happens to a handful users.  When they view a crystal report online via the ActiveX viewer the text displays in a cryptic type language.  It doesn't appear to be a specific langu

  • Dynamic condition in UDO Matrix's Column

    Hi all, I have a user form with a matrix. The matrix's first column has a CFL linked to another UDO MasterData Code (lets call it UDOCode). And on this matrix, the same UDOCode cannot be chosen more then once. So, I've been trying to code a dynamic C

  • Run form via form builder

    I'm having trouble running my forms via the forms builder. Everytime i click "run", a new browser window opens with url like http://127.0.0.1:1917/FYCu0odZTxl42wlbLoQ06rso8zKuYWEVV1TpUq4OddxheEMT The port and uri is new everytime. I have tried with a

  • Error loading file for Pro-53 plugin

    Greetings, I keep having to tell Logic 8 Pro where the file 'def.p5a' is located everytime I load the Pro-53 plugin. Any help?

  • Easiest way to install update rollups for exchnage 2010

    Dear Mates, i have downloaded the update roll ups from RU 1 to RU 7 for my test environment exchange 2010  and i would like install all the update roll ups in all my exchange servers (8 No's). what is the easy method to install all the RU's in single