How to change number's label & how to specify alert hour in calendar?

I have iPhone 4 on version 4.1 and I would like to change the labels of my contact's phone numbers.
For example, my dad has two mobile numbers, but I can only set one mobile number (the other one can be "work", "home", etc.) so in that case I would like to have 2 labels named "mobile". And what if I would like to add a custom label, for example "restaurant"? How can I do it?
Another thing I would like to set is a different event alert than what I'm offered. For example, I can have my alert 1 or 2 hours before, but not 3 hours before (the next option is already 1 day before). How can I change that?
Thanks for your help!

I just got off the phone with apple tech support. The problem for me was that I had my contacts set to sync with google. This means they were essentially being saved and managed by google. By turning off syncing with google, all those fields, including 'add custom label' became available. To manage the google sync setting, on your phone go to SETTINGS > MAIL,CONTACTS,CALENDARS > GMAIL > CONTACTS. If you turn this off your contacts will be saved and managed by your phone. Be sure to turn icloud syncing on and that it includes contacts. To do that, go to SETTINGS > ICLOUD > CONTACTS. This is the ideal solution, however it removes your google contacts from the phone. To get the google contacts back onto your phone without switching your sync settings back to google, download your google contacts into Outlook or Windows Live mail and export them into the phone. I can't give you steps on how to download them from google, but to get them from Outlook or Windows Live Mail to your phone, do this: while the phone is plugged in, go into iTunes. click once on your phone name where it appears in the list to the left, by default it shows you the SUMMARY screen. It's hard to notice, but look at the top of the summary screen and see that there are other links there for INFO, APPS, MUSIC, etc. Click on INFO. Check the SYNC CONTACTS with option and choose outlook or windows, whichever applies to you. Click the APPLY button at the very bottom of the screen and it'll sync it up. Good luck!

Similar Messages

  • Nokia PC Suite how to show 24 hours in Calendar

    In the calendar daily and weekly  view of Nokia PC Suite, I would like to see the full day: e.g. from 0:00 to 24:00, without the need of vertical scrolling.
    I remember there is a setting somewhere, but I am not able to find it anymore.
    My PC Suite is 7.1.40.6 on Windows 7.

    Awesome, thanks so much, I've been trying to figure this out for months!

  • How to find Change number for a Material

    Hi,
    If we know the material number and Revision level then how can we find the Change Number of that material.
    Is there any table in which i can find Change number for a revision level or is there any Function module available.
    Regards,
    Vaibhav

    Hi Vaibhav,
    Is there any table to find the change number and revision level of a material. I have change number and material and revision level coming from external system. But i need to check that with SAP whether it exists or not.
    Is there any table link to find whether a material has change number.

  • How can i  change the column label text in a alv table display

    how can i change the column label text in a alv table display??
    A similar kinda of question was posted previuosly where the requirement was the label text was needed and following below code was given as solution :
    <i>*  declare column, settings, header object
    DATA: lr_column TYPE REF TO cl_salv_wd_column.
    DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    DATA: lr_column_header type ref to CL_SALV_WD_COLUMN_HEADER.
    get column by specifying column name.
    lr_column = lr_column_settings->get_column( 'COLUMN_NAME1' ).
    set Header Text as null
    lr_column_header = lr_column->get_header( ).
    lr_column_header->set_text( ' ' ).</i>
    My specific requirement is i have an input field on the screen and i want reflect that value as the column label for one of the column in the alv table. I have used he above code with slight modification in the MODIFYVIEW method of the view since it is a process after input. The component gets activated without any errors but while run time i get an error stating
    <i>"The following error text was processed in the system CDV : Access via 'NULL' object reference not possible."</i>
    i have checked in debugging and the error occured at the statement :
    <i>lr_column = lr_column_settings->get_column( 'CURRENT_YEAR' ).</i>Please can you provide me an alternative for my requirement or correct me if i have done it wrong.
    Thanks,
    Suri

    I found it myself how to do it. The error says that it is not able to find the reference object i.e  it is asking us to refer to the table. The following piece of code will solve this problem. Have to implement this in WDDOMODIFYVIEW method of the view. This thing works comrades enjoy...
      DATA : lr_cmp_usage TYPE REF TO if_wd_component_usage,
             lr_if_controller  TYPE REF TO iwci_salv_wd_table,
             lr_cmdl   TYPE REF TO cl_salv_wd_config_table,
             lr_col    TYPE REF TO cl_salv_wd_column.
      DATA : node_year  TYPE REF TO if_wd_context_node,
             elem_year  TYPE REF TO if_wd_context_element,
             stru_year  TYPE if_alv_layout=>element_importing,
             item_year  LIKE stru_year-i_current_year,
             lf_string    TYPE char(x),
      DATA: lr_column TYPE REF TO cl_salv_wd_column.
      DATA: lr_column_header TYPE REF TO cl_salv_wd_column_header.
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    Get the entered value from the input field of the screen
    node_year  = wd_context->get_child_node( name = 'IMPORTING_NODE' ).
    elem_year  = node_year->get_element( ).
      elem_year->get_attribute(
       EXPORTING
        name = 'IMPORT_NODE-PARAMETER'
       IMPORTING
        value = L_IMPORT_PARAM ).
      WRITE L_IMPORT_PARAM TO lf_string.
    Get the reference of the table
      lr_cmp_usage  =  wd_this->wd_cpuse_alv( ).
      IF lr_cmp_usage->has_active_component( ) IS INITIAL.
        lr_cmp_usage->create_component( ).
      ENDIF.
      lr_if_controller  = wd_this->wd_cpifc_alv( ).
      lr_column_settings = lr_if_controller->get_model( ).
    get column by specifying column name.
      IF lr_column_settings IS BOUND.
        lr_column = lr_column_settings->get_column( 'COLUMN_NAME').
    set Header Text as null
        lr_column_header = lr_column->get_header( ).
        lr_column_header->set_text( lf_string ).
    endif.

  • How to fetch the latest change number from CDPOS Table..?

    Hi All,
    im trying to fetch teh change number from CDPOS with the below select, but my requirement is always i wants to fetch the latest change number.
              SELECT SINGLE objectid changenr FROM cdpos
                     INTO wa_cdpos
                     WHERE objectid = wa_e1kna1m-kunnr
                     AND ( tabname = 'KNA1' OR tabname = 'KNVV')
                     AND   fname = 'AUFSD'
                     AND ( value_new = '01' OR value_new = space ).
    Please let me know how to achive this..?
    Ashok

    try this way
    "           SELECT SINGLE objectid changenr FROM cdpos
    "                 INTO wa_cdpos
               SELECT objectid changenr FROM cdpos
                      INTO table t_cdpos
                      WHERE objectid = wa_e1kna1m-kunnr
                      AND ( tabname = 'KNA1' OR tabname = 'KNVV')
                      AND   fname = 'AUFSD'
                      AND ( value_new = '01' OR value_new = space ).
    SORT t_cdpos by  changenr Descending.
    read t_cdos index 1.    "this is the latest change
    Prabhudas

  • How do you change a "row Label" in form central into an interactive text box?

    How do you change a "row Label" in form central into an interactive text box?  I need to leave some of the row labels plank so that people using the form can add some of their on labels.  Can this be done and if so how?

    I'm not quite sure I understand your question. Respondents (fillers of the form) cannot edit the label of a field.
    Randy

  • In iPhoto  how do I open Photo Grid to change number of caption lines?

    In iPhoto  how do I open Photo Grid to change number of caption lines?

    In iPhoto '11 you can only display two lines below the thumbnails of your photos when you browse an event or an album, the titles and the ratings. The title will be truncated, if it does not fit into the single line. From the iPhoto help:
    To show title and rating information below photos:
    Click to select Photos in the Source list.
    Choose View, and then choose the information you want to view:
    Titles
    Rating
    The information field you chose appears below your photos.
    To hide this information, choose View, and then choose the information you want to hide.
    Regards
    Léonie

  • How may I change my slide labels?

    I would like to rename my slides, and I am sure there must be a very easy answer to this that I am overlooking. From all the online research I have done to find the answer to this question, it seems that while I am in filmstrip view, I should simply be able to enter a label in the Name: text box at the top of the Properties tab. However, when I do so, nothing changes. Can anyone help me to understand what I am missing?

    I did close and reopen the filmstrip - it had no effect. I do not know how to reset the workspace, but I did save and close the project, then open it again. Still no change to the labels to the left in filmstrip view.

  • How to changes  standard sap label description

    Hi !
    I heard that there is a way ton change standard sap label description. 
    Please tell me how to do this ?
    Thanks
    moshe

    Hi Solman
       You can do that using the method i have mentioned in
    my earlier post to change the descrptions. Mostly these
    will be used for Product Attributes in Material Master
    to give meaningful names as per our business. You can
    find the same if you go through the documentation
    following the below path
    IMG -> Sales & Distribution -> System Modifications ->
       Create New Fields( without Condition Technique).
    Here check the documentation of "Reserve Fields in the
    Customer Master Record"
      Hope that can help you understand better.
    Kind Regards
    Eswar

  • How to set change number is prerequisite when change BOM?

    Dear SAP Experts,
    I have actived EC management  in BOM control data in IMG. But when i changed
    BOM ( the code  CS02 )  with change number blank, system had not given an error message. SO,how to set change number is prerequisite when change BOMs?
    Thanks...
    Regards,
    Joey.

    Just a guess: Transaction os27 and change the number range to external.
    Matthias

  • How to skip or edit scn (system change number) for brarchive

    hi experts,
    I have searched for procedures but didnt find any accurate solution. I wanted to skip the scn or the system change number for my brarchive. I have manually transported my files in the DR site because of seems to be FTP problems. I have to skip those redologs which i have already transfered. How am i suppose to do these? I'm looking forward to a textfile or control file wherein i could edit the number of the next redolog to process or sql commands or something?
    Thanks in advance.

    Still not sure what exactly your problem is.
    You transferred redologs; are they still available in their original oraarch location?
    If no : See my answer above. Did that many times myself.
    If yes : Log files will be copied by brarchive as always. Make sure that no harm will be done if they are overwritten at a place where they already exist, and where they maybe currently are processed by another program!
    regards

  • How do I open photo grid to change number of caption lines

    how do I open photo grid to change number of caption lines?

    Does this involve iPhoto for the Mac in some way? If so, you're going to need to explain in more detail.

  • How to get Material attached to a change number

    Hi All,
    I have change number with me. I need to know lab/office field of the material attached to that change number.
    Can anybody suggest me how to get it?
    Thanks in advance.

    hi ,
    This thig u want in report or sap script .
    if in report u make it  through program and join with that field using for all entries .
    if in smartforms then check it in DDIC list and specify if not available then through program u call that fields.
    in script through program u can do that.
    Regards,
    Subash chandra Sahoo.

  • How do I change number pad on iPhone os6

    How do I change number pad on iPhone os6. I want to go back to the old style keypad

    It should have opend your contacts list, allowing you to pick your correct contact.  Not sure why yours isn't working.  Are you sure Siri is supported in your area?

  • HT204380 how to change number in FACETIME..????

    how to change number in FACETIME..????  very urgent please some1 do REPLyyy....

    Your FaceTime number is your phone number. I don't believe you can change it without changing your phone number.

Maybe you are looking for

  • Account determination - exchange rate and valuation

    Hello All, we have a problem concerning our account determination for differences in exchange rate and valuation. When clearing open vendor items in foreign currency, a percentage of the difference goes to our exchange rate difference account (correc

  • Yahoo mail sign-in - Freeze with 'ask me everytime' cookie setting.

    3.6.13 win7-64 * Default Plug-in * Shockwave Flash 10.1 r102 * Next Generation Java Plug-in 1.6.0_23 for Mozilla browsers * NPRuntime Script Plug-in Library for Java(TM) Deploy * 4.0.51204.0 All plugs disabled - Problem continues. All Extensions disa

  • MuVo TX stopped playing music works as memory storage o

    HiI had this MuVo TX for a while i have used in the early days as a mp3 player and later mostly as storage for files, now when i try to use it as MP3 it doesn't play or switch on, but works perfectly well as storage device. I have tried formatting. I

  • Accessing photos in iPhoto from Time Machine. Help Please!

    I'm using the Time Machine Backup Hard drive from my iMac on my macbook pro to access my files whilst travelling. I'm having difficutly with accesing my iphotos. What do I do when I get this message: "The iPhoto Library is a Time Machine backup, and

  • Satellite Pro A300D gets to warm and shuts down after short time. HELP!!!

    Hallo together, i bought the Satellite Pro A300D notebook 3 weeks ago. Since the beginning I have the problem that the notebook gets to warm and shuts down within an hour! I dont run any high performance application and I keep the left side of the no