Contacts on icloud give wrong country code for Oman

Whenever I use Contacts on icloud and enter the country code of the Sultanate of Oman (+968), it becomes (+357) and there is no way to get it straight.

Country code 357? I'm also in Oman and all my contacts suddenly have country code 374 instead of 968...
Fantastic conclusion to my first test of iCloud.

Similar Messages

  • All my contacts are stored with country code for eg   233 244 123456. Contact names do not appear during incoming calls. Once the country code is removed , names appear. Please help

    All my contacts are stored with country code for eg   +233 244 123456. Contact names do not appear during incoming calls.
    Please help

    http://discussions.apple.com/thread.jspa?threadID=2280669&tstart=0

  • Change the default country code for new contacts in Outlook 2013 for countries not listed in Control Panel Region Format

    Dear all,
    I would like to change the default country code for new Outlook 2013 contacts. My country is Mozambique (+258) and is not listed under Control Panel> Region> Formats> Format:
    Is there any place (registry maybe, anywhere) where I can manipulate the existing formats or manually add a new format to the List ??? - for example Portuguese (Mozambique).
    I am using Windows 8.1
    I have tried changing the country on the phone and modem options and nothing changes. Also changing the Home Location on Region> Location to Mozambique didn't change a thing. The only place where I change something and produces results is the
    Format List.
    Any ideias???? If not, is there a place where I can ask Microsoft to include Portuguese (Mozambique) on future windows updates???
    Kind regards,
    Osvaldo

    Hi,
    Windows uses the information set under
    'Phone and Modem'  in the Control Panel to determine the default area code.
    You can change the country/region to
    Mozambique
    and set your area code here:
    Regards,
    Steve Fan
    TechNet Community Support

  • Have downloaded 5s iPhone. Instructions for activating iCloud gives wrong email address to verify account. How can I get around this problem and get my phone set up with iCloud

    Have downloaded 5s iPhone. Instructions for activating iCloud gives wrong email address to verify account. How can I get around this problem and get my phone set up with iCloud

    elhoseny wrote:
    ... Instructions for activating iCloud gives wrong email address to verify account..
    The Apple ID and Password that was Originally used to Activate the iDevice is required
    If you do not have that information you will not be able to use the Device.
    Activation Lock in iOS 7  >  http://support.apple.com/kb/HT5818

  • Hi guys please give me sample code for call transaction that handles error

    hi guys, please give me sample code for call transaction that handles error,
    please send me the sample code in which there should be all decleration part and everything, based on the sample code i will develop my code.
    please do help me as it is urgent.
    thanks and regards.
    prasadnn.

    Hi Prasad,
    Check this code.
    Source Code for BDC using Call Transaction
    *Code used to create BDC
    *& Report  ZBDC_EXAMPLE                                                *
    *& Example BDC program, which updates net price of item 00010 of a     *
    *& particular Purchase order(EBELN).                                   *
    REPORT  ZBDC_EXAMPLE  NO STANDARD PAGE HEADING
                          LINE-SIZE 132.
    Data declaration
    TABLES: ekko, ekpo.
    TYPES: BEGIN OF t_ekko,
        ebeln TYPE ekko-ebeln,
        waers TYPE ekko-waers,
        netpr TYPE ekpo-netpr,
        err_msg(73) TYPE c,
    END OF t_ekko.
    DATA: it_ekko  TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_ekko  TYPE t_ekko,
          it_error TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_error TYPE t_ekko,
          it_success TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_success TYPE t_ekko.
    DATA: w_textout            LIKE t100-text.
    DATA: gd_update TYPE i,
          gd_lines TYPE i.
    *Used to store BDC data
    DATA: BEGIN OF bdc_tab OCCURS 0.
            INCLUDE STRUCTURE bdcdata.
    DATA: END OF bdc_tab.
    *Used to stores error information from CALL TRANSACTION Function Module
    DATA: BEGIN OF messtab OCCURS 0.
            INCLUDE STRUCTURE bdcmsgcoll.
    DATA: END OF messtab.
    *Screen declaration
    SELECTION-SCREEN BEGIN OF BLOCK block1 WITH FRAME
                                        TITLE text-001. "Purchase order Num
    SELECT-OPTIONS: so_ebeln FOR ekko-ebeln OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK block1.
    SELECTION-SCREEN BEGIN OF BLOCK block2 WITH FRAME
                                        TITLE text-002. "New NETPR value
    PARAMETERS:  p_newpr(14)   TYPE c obligatory.  "LIKE ekpo-netpr.
    SELECTION-SCREEN END OF BLOCK block2.
    *START-OF-SELECTION
    START-OF-SELECTION.
    Retrieve data from Purchase order table(EKKO)
      SELECT ekkoebeln ekkowaers ekpo~netpr
        INTO TABLE it_ekko
        FROM ekko AS ekko INNER JOIN ekpo AS ekpo
          ON ekpoebeln EQ ekkoebeln
       WHERE ekko~ebeln IN so_ebeln AND
             ekpo~ebelp EQ '10'.
    *END-OF-SELECTION
    END-OF-SELECTION.
    Check data has been retrieved ready for processing
      DESCRIBE TABLE it_ekko LINES gd_lines.
      IF gd_lines LE 0.
      Display message if no data has been retrieved
        MESSAGE i003(zp) WITH 'No Records Found'(001).
        LEAVE TO SCREEN 0.
      ELSE.
      Update Customer master data (instalment text)
        LOOP AT it_ekko INTO wa_ekko.
          PERFORM bdc_update.
        ENDLOOP.
      Display message confirming number of records updated
        IF gd_update GT 1.
          MESSAGE i003(zp) WITH gd_update 'Records updated'(002).
        ELSE.
          MESSAGE i003(zp) WITH gd_update 'Record updated'(003).
        ENDIF.
    Display Success Report
      Check Success table
        DESCRIBE TABLE it_success LINES gd_lines.
        IF gd_lines GT 0.
        Display result report column headings
          PERFORM display_column_headings.
        Display result report
          PERFORM display_report.
        ENDIF.
    Display Error Report
      Check errors table
        DESCRIBE TABLE it_error LINES gd_lines.
      If errors exist then display errors report
        IF gd_lines GT 0.
        Display errors report
          PERFORM display_error_headings.
          PERFORM display_error_report.
        ENDIF.
      ENDIF.
    *&      Form  DISPLAY_COLUMN_HEADINGS
          Display column headings
    FORM display_column_headings.
      WRITE:2 ' Success Report '(014) COLOR COL_POSITIVE.
      SKIP.
      WRITE:2 'The following records updated successfully:'(013).
      WRITE:/ sy-uline(42).
      FORMAT COLOR COL_HEADING.
      WRITE:/      sy-vline,
              (10) 'Purchase Order'(004), sy-vline,
              (11) 'Old Netpr'(005), sy-vline,
              (11) 'New Netpr'(006), sy-vline.
      WRITE:/ sy-uline(42).
    ENDFORM.                    " DISPLAY_COLUMN_HEADINGS
    *&      Form  BDC_UPDATE
          Populate BDC table and call transaction ME22
    FORM bdc_update.
      PERFORM dynpro USING:
          'X'   'SAPMM06E'        '0105',
          ' '   'BDC_CURSOR'      'RM06E-BSTNR',
          ' '   'RM06E-BSTNR'     wa_ekko-ebeln,
          ' '   'BDC_OKCODE'      '/00',                      "OK code
          'X'   'SAPMM06E'        '0120',
          ' '   'BDC_CURSOR'      'EKPO-NETPR(01)',
          ' '   'EKPO-NETPR(01)'  p_newpr,
          ' '   'BDC_OKCODE'      '=BU'.                      "OK code
    Call transaction to update customer instalment text
      CALL TRANSACTION 'ME22' USING bdc_tab MODE 'N' UPDATE 'S'
             MESSAGES INTO messtab.
    Check if update was succesful
      IF sy-subrc EQ 0.
        ADD 1 TO gd_update.
        APPEND wa_ekko TO it_success.
      ELSE.
      Retrieve error messages displayed during BDC update
        LOOP AT messtab WHERE msgtyp = 'E'.
        Builds actual message based on info returned from Call transaction
          CALL FUNCTION 'MESSAGE_TEXT_BUILD'
               EXPORTING
                    msgid               = messtab-msgid
                    msgnr               = messtab-msgnr
                    msgv1               = messtab-msgv1
                    msgv2               = messtab-msgv2
                    msgv3               = messtab-msgv3
                    msgv4               = messtab-msgv4
               IMPORTING
                    message_text_output = w_textout.
        ENDLOOP.
      Build error table ready for output
        wa_error = wa_ekko.
        wa_error-err_msg = w_textout.
        APPEND wa_error TO it_error.
        CLEAR: wa_error.
      ENDIF.
    Clear bdc date table
      CLEAR: bdc_tab.
      REFRESH: bdc_tab.
    ENDFORM.                    " BDC_UPDATE
          FORM DYNPRO                                                   *
          stores values to bdc table                                    *
    -->  DYNBEGIN                                                      *
    -->  NAME                                                          *
    -->  VALUE                                                         *
    FORM dynpro USING    dynbegin name value.
      IF dynbegin = 'X'.
        CLEAR bdc_tab.
        MOVE:  name TO bdc_tab-program,
               value TO bdc_tab-dynpro,
               'X'  TO bdc_tab-dynbegin.
        APPEND bdc_tab.
      ELSE.
        CLEAR bdc_tab.
        MOVE:  name TO bdc_tab-fnam,
               value TO bdc_tab-fval.
        APPEND bdc_tab.
      ENDIF.
    ENDFORM.                               " DYNPRO
    *&      Form  DISPLAY_REPORT
          Display Report
    FORM display_report.
      FORMAT COLOR COL_NORMAL.
    Loop at data table
      LOOP AT it_success INTO wa_success.
        WRITE:/      sy-vline,
                (10) wa_success-ebeln, sy-vline,
                (11) wa_success-netpr CURRENCY wa_success-waers, sy-vline,
                (11) p_newpr, sy-vline.
        CLEAR: wa_success.
      ENDLOOP.
      WRITE:/ sy-uline(42).
      REFRESH: it_success.
      FORMAT COLOR COL_BACKGROUND.
    ENDFORM.                    " DISPLAY_REPORT
    *&      Form  DISPLAY_ERROR_REPORT
          Display error report data
    FORM display_error_report.
      LOOP AT it_error INTO wa_error.
        WRITE:/      sy-vline,
                (10) wa_error-ebeln, sy-vline,
                (11) wa_error-netpr CURRENCY wa_error-waers, sy-vline,
                (73) wa_error-err_msg, sy-vline.
      ENDLOOP.
      WRITE:/ sy-uline(104).
      REFRESH: it_error.
    ENDFORM.                    " DISPLAY_ERROR_REPORT
    *&      Form  DISPLAY_ERROR_HEADINGS
          Display error report headings
    FORM display_error_headings.
      SKIP.
      WRITE:2 ' Error Report '(007) COLOR COL_NEGATIVE.
      SKIP.
      WRITE:2 'The following records failed during update:'(008).
      WRITE:/ sy-uline(104).
      FORMAT COLOR COL_HEADING.
      WRITE:/      sy-vline,
              (10) 'Purchase Order'(009), sy-vline,
              (11) 'Netpr'(010), sy-vline,
              (73) 'Error Message'(012), sy-vline.
      WRITE:/ sy-uline(104).
      FORMAT COLOR COL_NORMAL.
    ENDFORM.                    " DISPLAY_ERROR_HEADINGS
    Hope this resolves your query.
    Reward all the helpful answers.
    Regards

  • What is the country code for my Apple ID phone number? Normal att phone in austin tx

    what is the country code for my Apple ID phone number? Normal att phone in Austin Texas

    I hear you. I put a "1", & it won't accept that. Just keeps coming back w/ "Please specify a valid mobile phone number". I tried to put a "+" in front of the "1", but it won't take that @ all...

  • Anyone else having trouble with Itunes store? My account says I have entered the wrong security code for my credit card

    Anyone else having trouble with Itunes store? My account says I have entered the wrong security code for my credit card

    Yes, it happens to me all the time. I deleted an app because it froze the. Tried to redownloading it but it wouldn't let me ivd tried all of my cards and nothing works. I thought it was because I had a negative balance but I have a to of money all accounts. It'd be very helpful if someone could help us out.

  • Default country code for phone

    Hi,
    When editing new phones, the sistems suggest me the country code for united states, however i have my locale to spanish. How can i make the system to suggest a default country code for phone numbers (example uruguay)?
    How can i do a mass update to change the country code? is there anyway to do a mass update for more than 50 records?
    thanks

    thanks bob, is there any way to make the the system to automatically enters a country code for my country Uruguay? there is no locale for uruguay, so when i choose locale spanish spain or spanish mexico it automatically adds the country code for spain or mexico.
    thanks

  • HOW DO CHANGE  COUNTRY CODE FOR ITUNBES I STILL HAVE CREDIT IN ANOTHER COUNTRY?

    how do i change country code for itunes if i still have credit in another country?

    Click here and request assistance.
    (63856)

  • Based on personel number, how do I get country code for that person?

    Based on personel number, how do I get country code for that person? Is there any function module to allow me to do that? Thanks!

    Hi,
    Check function module HR_PERNR_COUNTRY_GET.
    Donnie

  • Wrong country code by default

    hallo,
    i often visit abroad - last time i was in hungary. have now been back in uk for 6 months and yet if i dont put the country code in when trying to dial a number, it shows up as prefixed with 0036 - the hungarian code. 1--- how do i make the default 0044? 2--- if i input a uk number starting with 0044, does it think i am calling from hungary? - not funny as with the new regs, hungarian vat is 27%.  
    any thoughts appreciated, cheers, sue

    Kabweman418 wrote:
    I am in Quito Ecuador and have tried to make local calls using international code but cannot get a connection. I have even changed my home location to Ecuador But still keep getting my h One code getting put in
    There could be a couple of issues going on here....
    1. What is the number in Quito you are trying to reach?  Replace the last 4 digits with XXXX, but list the rest of the number including the area/city code.  Numbers in Ecuador should be dialed from Skype using this format: +593 x xxx xxxx (international country code, then the single-digit area code without the leading zero used on the Ecuadorian domestic phone network, then the 7-digit phone number).  Even if you are also in Ecuador, calls must be dialed in the international format with Skype.
    2. Do you have Skype Credit and/or a subscription covering calls to the type of phone you are trying to reach?  Calling telephones from Skype is *not* free.  Calls to landline phones in some cities cost more than calls to other cities, and calls to mobile phones cost more than calls to any regular landline phone in that country.  Skype has subscriptions for 60 or 120 minutes of calls a month to Ecuador, with subscriptions for just landline phones and both landlines and mobiles (the latter costs more). 
    Hope that helps!
    Patrick
    Location/Ubicacion: Arizona USA
    Time Zone/Hora Local: UTC/GMT -7
    If this message has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.
    Si esto mensaje le ha ayudado, por favor haga clic en "Aceptar como solución". Si encuentra un mensaje útil, por favor "Da Kudos" al final del mensaje, por lo que esta información puede beneficiar a otros.
    I am not a Skype employee. No soy un empleado de Skype.

  • Update country codes for foreign trade statistics

    Hi all !
    I am updating our SAP Systems with all new Country Codes (ISO-Alpha-2) for foreign trade statistics (and preference calculation).
    For example Monaco was a unique code "MC" with key "001" (same key of France). Now I have to change this code "MC" to "FR", but I can create only one key "FR" into SAP. So I've just modified the "ISO-Code" field with "FR".
    What do you think about this ? Is this modification OK ? Thanks for your support !
    Greets.
    David

    Nobody ????

  • MI country code for Serbia (according to MobileEngine.Sync.Country)

    Hi guys,
    Since the list of Country codes on MI 70 device installation is somewhat hardly understandable... Could you please help me in finding the Serbia (officialy Republic of Serbia) country code.
    According to SAP's documentation the country code should follow the   ISO 3166-1 Alpha-2 rules, bu there is no entry RS  in the list..
    Do you know which abbreviation is used ?
    And yes, I know about SAP Note 1020442, but it helps only for the time zone (ECT for Serbia)...
    Thanks,
    Lalo

    Hi,
    Do you think the patch level makes sense?
    Actually 70 SP12 PL8-9
    Regards,
    Lalo

  • Change country code for Montenegro from XM to ME

    Hi Everybody,
    Could You please somebody advice, whether You have any experiance with changing existing country code in SAP? I need to change it in all tables in for Montenegro.
    What should be a good approach to start with?
    Do You think that SLO service provided by SAP is a good idea for this?
    Is there any OSS note how to deal with this complex change?
    Thank You in advance,
    Martin

    here's the ping result:
    AP -> German WLC:
    ELT-CONNECT>ping "German-WLC"
    Type escape sequence to abort.
    Sending 5, 100-byte ICMP Echos to 10.254.254.9, timeout is 2 seconds:
    Success rate is 100 percent (5/5), round-trip min/avg/max = 4/77/364 ms
    ELT-CONNECT>
    AP -> French WLC:
    ELT-CONNECT>ping "French WLC"
    Type escape sequence to abort.
    Sending 5, 100-byte ICMP Echos to 10.254.6.241, timeout is 2 seconds:
    Success rate is 100 percent (5/5), round-trip min/avg/max = 272/847/1564 ms
    ELT-CONNECT>

  • Japanese country code for 1550 AP

    We have an existing deployment into which we would like to add a 1550 outdoor AP. The current inventory is as follows:
    5508 WLC, version 7.4.110.0
    Several AIR-LAP1262N-Q-K9 APs, country code J2.
    Several AIR-LAP1602I-Q-K9 APs, country code J4.
    The WLC is currently set up for multiple countries, J2 & J4, however, the 1550 will not associate with a multi-country controller. According to the WLC documentation it is possible to migrate the 1262 APs to J3(-U domain) yet the same document also states 1550 APs require J4. Is there a solution for this set of APs in the Japanese regulatory domain?
    Thank you,
    Jason Valenzuela

    Hi ,
    your AP have AIR-LAP1142N-P-K9.(P Reguletry domain).
    Only One laptop is diconnecting or may others have the same problem of disconnection??
    You can enable 2P mode on WLC and test, if still problem persists then plz paste the debug output from AP.
    Regards
    Dont forget to rate helpful posts.

Maybe you are looking for