How to enter a birthday versus a birth date into iPhone contacts

Hi,
I sync my contacts with Yahoo!. For many people in my contancts I know their birthday (for example, December 5th), but not their full birth date (for exmaple, December 5, 1975). The iPhone doesn't seem to have an option that lets me put the year in as unknown. I don't want to put in the incorrect year or a dummy value like 1900.
Is there a way around this? Is there a way to get this added to the iPhone feature list? It seems like this is a common situation and one that many calendar and contact programs support.
Thanks,
Don

You may leave feedback for Apple at:
http://www.apple.com/feedback/iphone.html

Similar Messages

  • HT201178 How do I use the wireless keyboard to edit my iPhone contacts?

    How do I use the wireless keyboard to edit my iPhone contacts?

    Type in the field for first name, last name etc. When you're ready to go to the next field, hit enter/return.

  • How to speed up the loading of live data into flash file.

    How to speed up the loading of live data into flash file if the swf file size is 1.5 MB. Flash file is using 20 web service connections to load the live data.

    Hello,
    I am also facing a similar problem wherein the SWF file takes time to load the refreshed data in Infoview i.e. after exporting the xlf file to Business Objects platform. Currently I am using Xcelcius Engage/Enterprise 2008 SP3 Windows (file name: 51038212.ZIP) version 5.3.0.0 build number 12,3,0,670. Also the SWF file is approximately 2MB in size  and it uses 42 live office connections.
    Please suggest solution as to how to decrease the time it takes to refresh the live office connections.

  • How would i put a Australian cell phone number into my contacts such as 899-8930

    How would i put a Australian cell phone number into my contacts such as 899-8930

    Check the country of the contact, then use the international prefix number and iOS will sort out the display of the number.
    In addition to iCloud: Change the format of addresses and phone numbers

  • Facebook birthdays into iPhone contacts

    I have the sync option enabled in facebook but it only managed pictures.  How can I sync my friends facebook birthdays into my contacts?

    go to your calendar settings on the iPhone and see if you have a choice "birthday calendar"
    I didn't have to do anything to mine in order for those to show up ...

  • How to write a procedure to load the data into a table using xml file as input to the procedure?

    Hi,
    Iam new to the xml,
    can u please anyone help me how to write procedure to load the data into a table using xml as input parameter to a procedure and xml file is as shown below which is input to me.
    <?xml version="1.0"?>
    <DiseaseCodes>
    <Entity><dcode>0</dcode><ddesc>(I87)Other disorders of veins - postphlebitic syndrome</ddesc><claimid>34543></claimid><reauthflag>0</reauthflag></Entity>
    <Entity><dcode>0</dcode><ddesc>(J04)Acute laryngitis and tracheitis</ddesc><claimid>34543></claimid><reauthflag>0</reauthflag></Entity>
    <Entity><dcode>0</dcode><ddesc>(J17*)Pneumonia in other diseases - whooping cough</ddesc><claimid>34543></claimid><reauthflag>0</reauthflag></Entity>
    </DiseaseCodes>.
    Regards,
    vikram.

    here is the your XML parse in 11g :
    select *
      from xmltable('//Entity' passing xmltype
    '<?xml version="1.0"?>
    <DiseaseCodes>
    <Entity><dcode>0</dcode><ddesc>(I87)Other disorders of veins - postphlebitic syndrome</ddesc><claimid>34543></claimid><reauthflag>0</reauthflag></Entity>
    <Entity><dcode>0</dcode><ddesc>(J04)Acute laryngitis and tracheitis</ddesc><claimid>34543></claimid><reauthflag>0</reauthflag></Entity>
    <Entity><dcode>0</dcode><ddesc>(J17*)Pneumonia in other diseases - whooping cough</ddesc><claimid>34543></claimid><reauthflag>0</reauthflag></Entity>
    </DiseaseCodes>
    ') columns
      "dcode" varchar2(4000) path '/Entity/dcode',
      "ddesc" varchar2(4000) path '/Entity/ddesc',
      "reauthflag" varchar2(4000) path '/Entity/reauthflag'
    dcode                                                                            ddesc                                                                            reauthflag
    0                                                                                (I87)Other disorders of veins - postphlebitic syndrome                           0
    0                                                                                (J04)Acute laryngitis and tracheitis                                             0
    0                                                                                (J17*)Pneumonia in other diseases - whooping cough                               0
    SQL>
    Using this parser you can create procedure as
    SQL> create or replace procedure myXMLParse(x clob) as
      2  begin
      3    insert into MyXmlTable
      4      select *
      5        from xmltable('//Entity' passing xmltype(x) columns "dcode"
      6                      varchar2(4000) path '/Entity/dcode',
      7                      "ddesc" varchar2(4000) path '/Entity/ddesc',
      8                      "reauthflag" varchar2(4000) path '/Entity/reauthflag');
      9    commit;
    10  end;
    11 
    12  /
    Procedure created
    SQL>
    SQL>
    SQL> exec myXMLParse('<?xml version="1.0"?><DiseaseCodes><Entity><dcode>0</dcode><ddesc>(I87)Other disorders of veins - postphlebitic syndrome</ddesc><claimid>34543></claimid><reauthflag>0</reauthflag></Entity><Entity><dcode>0</dcode><ddesc>(J04)Acute laryngitis and tracheitis</ddesc><claimid>34543></claimid><reauthflag>0</reauthflag></Entity><Entity><dcode>0</dcode><ddesc>(J17*)Pneumonia in other diseases - whooping cough</ddesc><claimid>34543></claimid><reauthflag>0</reauthflag></Entity></DiseaseCodes>');
    PL/SQL procedure successfully completed
    SQL> select * from MYXMLTABLE;
    dcode                                                                            ddesc                                                                            reauthflag
    0                                                                                (I87)Other disorders of veins - postphlebitic syndrome                           0
    0                                                                                (J04)Acute laryngitis and tracheitis                                             0
    0                                                                                (J17*)Pneumonia in other diseases - whooping cough                               0
    SQL>
    SQL>
    Ramin Hashimzade

  • How to read a table and transfer the data into an internal table?

    Hello,
    I try to read all the data from a table (all attribute values from a node) and to write these data into an internal table. Any idea how to do this?
    Thanks for any help.

    Hi,
    Check this code.
    Here i creates context one node i.e  flights and attributes are from SFLIGHT table.
    DATA: lo_nd_flights TYPE REF TO if_wd_context_node,
            lo_el_flights TYPE REF TO if_wd_context_element,
            ls_flights TYPE if_main=>element_flights,
            it_flights type if_main=>elements_flights.
    navigate from <CONTEXT> to <FLIGHTS> via lead selection
      lo_nd_flights = wd_context->get_child_node( 'FLIGHTS' ).
    CALL METHOD LO_ND_FLIGHTS->GET_STATIC_ATTRIBUTES_TABLE
      IMPORTING
        TABLE  = it_flights.
    now the table data will be in internal table it_flights.

  • How to include the UDF of items master data into PLD (Inventory in Warehouse Report (Detailed))

    Hi,
    Is there a way to include the UDF in the items master data into the <<Inventory In Warehouse Report (Detailed)>> PLD?
    I checked the default layout and found out all the column source type is "free text" and the content is #Item, how do I know the value of the UDF?
    Thanks

    Hi,
    Some of the standard reports are hardcoded in sap. Not possible to add UDF field in PLD.
    Also refer this thread Variables -  Sap business one
    Thanks & Regards,
    Nagarajan

  • How to enter a value versus picking one from the pop-up menu?

    I am new to numbers and am using version 3.5.2.  I understand one can define a Pop-Up for cell value selection, but what if I want to also be able to specify a value that is not in the pull down?  I thought "start with blank" would do the trick, but it won't let me enter any values.  Thanks in advance for your suggestions!

    Hi Sultry,
    If your entry is a one time deal you could just delete the cells value and type in your choice. If you want to update your popup you need ot redefine its values. And then of course replace your old popups with your new one.
    quinn

  • Calendar - how to enter more than one event per date and show it in the Month display?

    I would like to enter multiple events (two, anyway) for a single day in the calendar.  I would also like that Month view to display the two events.  So far, all I've been able to do is enter a single event; in fact, only a single line for the single event.  If I enter in Notes, they're not displayed in the Month view.  Thank you.

    I assume that you are tapping the + sign to enter additional events and that is not working so try quitting the app and restart the iPad.
    Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • How to enter values like SYSDATE in the Data Grid Editor

    I would need to insert sysdate in a field via the Data editor.
    When I do this, it replaces it by to_Date('sysdate', blabla...)
    Is there a way to tell sqldeveloper sysdate is a key value (like :sysdate in forms) ?
    Regards
    Gilles

    Sorry, I did not understand.
    I just have a DATE field, which I want to update with the current date (sysdate).
    How do I do that with sql developer and the data editor ?

  • How do I stop Numbers from changing my data into dates?

    I am trying to create a chart and some of the data ranges from 0-4, 5-9, 10-14, etc...
    When I enter 5-9 on a field, it automatically changes to May 9, 2012. Any help is appreciated.

    Welcome to Apple Support Communities
    In the table where you enter the data, click on the header of the row or column to select the entire range (column B shown selected here).
    Then click the down-arrow button at the right end of the Format buttons and select Numeral System:
    In the Cell Format/Numeral System pop-up, select the options you desire:
    Be sure to begin your entry with the = 'equals' sign if you want the result of the calculation displayed.

  • How can I tell if someone else is tapped into iPhone 4s when I use as hotspot?

    I see a message saying there are 2 connections on my iPhone while in hotspot use.  It seems I remember being able to pull up ip address to check that noone else is hijacked on it.  Can you tell me how to do that?  Is that the best way to watch that?  Is it even possible that another person is tapped in?
    terri

    It is best to first change the password for your sync account and after having done that also generate a new sync key if you suspect that others are using your sync account.
    Also be sure to use a master password to protect your passwords, including the sync password, and prevent others from hacking your sync account.
    * https://support.mozilla.org/kb/ive-lost-my-phone-how-do-i-deactivate-sync
    *https://support.mozilla.org/kb/Protecting+stored+passwords+using+a+master+password

  • How can I transfer all my HTC phone data to iphone?

    How can I transfer my data (photo, contact, message) from HTC one to Iphone 6?
    Please give me more information about it. Thank you.

    The following may help: Move content from your Android phone to iPhone - Apple Support

  • How to delete the photo that had been sync into iphone from windows

    I have sync my picture from
    Computer into the iphone, the it automatically sync 2 same folder into the photo album. Im trying to delete it but cant, cant even find the file using the computer. Pls help

    Are you talking about photo Library?
    This is how Apple handles photos.  ALL synced photos are in teh Photo Library.  you can also access those exact same pics ( not duplicates) from the album which you selected to sync; just as your music is in your library and ca also be accessed via playlists.

Maybe you are looking for

  • Date and time stamp with Sony HDR CX7

    Hi, I am trying to figure our how to find date and time stamps for individual clips. My workflow is as follows: I use disk utility to make a disk image (.dmg) of the memory stick and import the clips from this disk image. Everything works fine, but I

  • Best Raid Block Size for video editing

    I cannot seem to get my head round about which Raid Block Size I should set my Striped Raid 50 configuration to. There seems to be very little info about this, but what info there is seems to imply that it could seriously affect the performace of the

  • Java.sql.SQLException: XA error: XAER_PROTO

    Environment : WLS 6.1sp3, Oracle 9.2.0.1.0, SunSolaris (SPARC - 64 bit) We are using thin/XA driver for creating the connection pool. However we are getting java.sql.SQLException: XA error: XAER_PROTO : Routine was invoked in an inproper context star

  • **URGENT** Scene button problem!

    Why my 'maps' and 'video' buttons do not play the movie? I use this code: on(release){gotoAndPlay("play");} I have labelled "play" in other scene, but it does not play the movie! I have tried this code: on(release){gotoAndPlay("Scene 36", "play");} S

  • Oracle Utilities CC&B - Infrastructure Scaling

    We are using Oracle Utilities CC&B 2.1 with Oracle 10g Database. Can anyone please suggest the optimum Database configuration that is required for a development/production environment. Also kindly share any documentation for scaling the Infrastructur