Why does Ical want to change the original dates to 2001 when syncing from my iPhone?

Hi I was wondering if anyone could help with this as its driving me up the wall
over the last few weeks I upgraded to Lion running 10.7.1 and until then my Iphone synced everything fine without any problems I have an Iphone 3G running 4.2.1 and when I sync now I get the Ical sync alert saying that more than 25% of my calender events will change on my computer.
When I look nothing has changed accept the origianl date which is 1/1/2001 for anything that is being taken off my phone onto Ical and also for anything that is already on Ical, I keep telling it to sync later but everything I try it always comes up the same.
I asked during the week in at the Apple store but was adviced that this problem had not been heard of before and to book both my phone an macbook in for a genius bar appointment.
Anyone else come accross this problem or is it just myself?
Kind regards Andy ;0)

Anyone able to help with this problem at all its still doing my head in ;0(

Similar Messages

  • I want to change the final date format in MM/DD/YEAR.

    HI all,
    I want to change the final date format in MM/DD/YEAR. Even my profile will be in any format like DD.MM.YY or YY.MM.DD .
    can any body tell me the way..

    declare variable:
    DATA : gv_date(10) TYPE c.
    and assign value to it:
    CONCATENATE sy-datum+4(2) sy-datum+6(2) sy-datum(4) INTO gv_date SEPARATED BY '/'

  • Why does my IN operator change the datatype

    Hi
    This doesn't make any sense, but i'm hoping there's an obvious answer which you guys have seen a million times before.
    I have this criteria in my WHERE clause
    AND rpg_id = (SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34))because of this clause no results are return in my query. However if i use a to_number function like this:
    AND rpg_id = to_number(SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34))OR
    AND to_char(rpg_id) = (SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34))i get the expected results returned.
    The sub query:-
    SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34)returns the value 226. rpg_id in this table is a NUMBER datatype. As is rpg_id in the original outer query.
    I looked at synonyms, views, and other objects it might be using for the rep_elig_groups table, but there are none.
    Then i tried changing the IN operator for an EQUALS operator and would you believe it, it worked.
    AND rpg_id = (SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34))can someone please explain what ORACLE is thinking here!!!
    Many thanks
    Edited by: tri_harder on Dec 9, 2008 4:48 PM missed the closing bracket in the final piece of code!
    Edited by: tri_harder on Dec 10, 2008 8:44 AM

    I ran the expain plans in TOAD for both queries, with the only difference changing the operator from IN to =. I'm very surprised there is such a difference between the two!!
    SELECT   tim_id,
                  rpg_id,
                                 ROUND(SUM(retail_value), 2) retail_value,
                                 ROUND(SUM(salesidx), 2) salesidx,
                                 ROUND(SUM(VALUE), 2) VALUE,
                                 ROUND(SUM(bva_salesidx), 2) bva_salesidx,
                                 ROUND(SUM(bva_value), 2) bva_value,
                                 ROUND(SUM(bva_retail_value), 2) bva_retail_value
                            FROM ms_stats_ol_ms
                           WHERE 1 = 1
                             AND fmt_id IN(SELECT ID
                                             FROM formats
                                            WHERE car_id = 0 OR 0 = 0)
                             AND fmt_id NOT IN(
                                   SELECT fmt.ID
                                     FROM formats fmt,
                                          class_formats clf
                                    WHERE fmt.ID = clf.fmt_id
                                      AND clf.cla_id IN(3, 6)
                                      AND fmt.car_id = 2)
                             AND cla_id = 3
                             AND rpg_id = (SELECT rpg_id
                                             FROM rep_elig_groups
                                            WHERE pel_id IN(34))
                             AND tim_id BETWEEN 4985 AND 5418
                        GROUP BY tim_id, rpg_idSo this is my original query that returned no results and produced the following Explain Plan:-
    Plan
    SELECT STATEMENT  ALL_ROWSCost: 10,842  Bytes: 1,505  Cardinality: 35                                          
         17 HASH GROUP BY  Cost: 10,842  Bytes: 1,505  Cardinality: 35                                     
              16 HASH JOIN  Cost: 10,836  Bytes: 1,587,345  Cardinality: 36,915                                
                   1 TABLE ACCESS FULL TABLE INTEGRATION.FORMATS Cost: 2  Bytes: 90  Cardinality: 15                           
                   15 HASH JOIN RIGHT ANTI  Cost: 10,833  Bytes: 1,456,912  Cardinality: 39,376                           
                        6 VIEW VIEW SYS.VW_NSO_1 Cost: 4  Bytes: 6  Cardinality: 2                      
                             5 HASH JOIN  Cost: 4  Bytes: 24  Cardinality: 2                 
                                  2 TABLE ACCESS FULL TABLE INTEGRATION.FORMATS Cost: 2  Bytes: 12  Cardinality: 2            
                                  4 INLIST ITERATOR            
                                       3 INDEX RANGE SCAN INDEX (UNIQUE) INTEGRATION.CLF_PK Cost: 1  Bytes: 60  Cardinality: 10       
                        14 TABLE ACCESS BY INDEX ROWID TABLE CHARTDEV.MS_STATS_OL_MS Cost: 10,829  Bytes: 1,530,034  Cardinality: 45,001                      
                             13 BITMAP CONVERSION TO ROWIDS                 
                                  12 BITMAP AND            
                                       8 BITMAP INDEX SINGLE VALUE INDEX (BITMAP) CHARTDEV.MSST_OL_MS_RPG_ID_I      
                                            7 INDEX FAST FULL SCAN INDEX (UNIQUE) INTEGRATION.REG_PK Cost: 2  Bytes: 6  Cardinality: 1 
                                       10 BITMAP MERGE       
                                            9 BITMAP INDEX RANGE SCAN INDEX (BITMAP) CHARTDEV.MSST_OL_MS_TIM_ID_I
                                       11 BITMAP INDEX SINGLE VALUE INDEX (BITMAP) CHARTDEV.MSST_OL_MS_CLA_ID_I      The following script has the very small change of the operator changed from IN to =
    SELECT   tim_id,
                  rpg_id,
                                 ROUND(SUM(retail_value), 2) retail_value,
                                 ROUND(SUM(salesidx), 2) salesidx,
                                 ROUND(SUM(VALUE), 2) VALUE,
                                 ROUND(SUM(bva_salesidx), 2) bva_salesidx,
                                 ROUND(SUM(bva_value), 2) bva_value,
                                 ROUND(SUM(bva_retail_value), 2) bva_retail_value
                            FROM ms_stats_ol_ms
                           WHERE 1 = 1
                             AND fmt_id IN(SELECT ID
                                             FROM formats
                                            WHERE car_id = 0 OR 0 = 0)
                             AND fmt_id NOT IN(
                                   SELECT fmt.ID
                                     FROM formats fmt,
                                          class_formats clf
                                    WHERE fmt.ID = clf.fmt_id
                                      AND clf.cla_id IN(3, 6)
                                      AND fmt.car_id = 2)
                             AND cla_id = 3
                             AND rpg_id IN (SELECT rpg_id
                                             FROM rep_elig_groups
                                            WHERE pel_id IN(34))
                             AND tim_id BETWEEN 4985 AND 5418
                        GROUP BY tim_id, rpg_idAnd this returned the expected results and produced the following Explain plan:-
    Plan
    SELECT STATEMENT  ALL_ROWSCost: 10,996  Bytes: 1,610  Cardinality: 35                                                    
         30 TEMP TABLE TRANSFORMATION                                               
              10 LOAD AS SELECT SYS.SYS_TEMP_0FD9D6614_166B4444                                         
                   9 MERGE JOIN CARTESIAN  Cost: 6  Bytes: 570  Cardinality: 30                                     
                        5 VIEW VIEW SYS.VW_NSO_1 Cost: 4  Bytes: 26  Cardinality: 2                                
                             4 HASH JOIN  Cost: 4  Bytes: 24  Cardinality: 2                           
                                  1 TABLE ACCESS FULL TABLE INTEGRATION.FORMATS Cost: 2  Bytes: 12  Cardinality: 2                      
                                  3 INLIST ITERATOR                      
                                       2 INDEX RANGE SCAN INDEX (UNIQUE) INTEGRATION.CLF_PK Cost: 1  Bytes: 60  Cardinality: 10                 
                        8 BUFFER SORT  Cost: 6  Bytes: 90  Cardinality: 15                                
                             7 TABLE ACCESS BY INDEX ROWID TABLE INTEGRATION.FORMATS Cost: 1  Bytes: 90  Cardinality: 15                           
                                  6 INDEX UNIQUE SCAN INDEX (UNIQUE) INTEGRATION.FMT_PK Cost: 0  Cardinality: 1                      
              29 HASH GROUP BY  Cost: 10,990  Bytes: 1,610  Cardinality: 35                                          
                   28 HASH JOIN  Cost: 10,989  Bytes: 4,600  Cardinality: 100                                     
                        11 TABLE ACCESS FULL TABLE (TEMP) SYS.SYS_TEMP_0FD9D6614_166B4444 Cost: 2  Bytes: 180  Cardinality: 30                                
                        27 HASH JOIN RIGHT SEMI  Cost: 10,987  Bytes: 34,280  Cardinality: 857                                
                             12 INDEX FAST FULL SCAN INDEX (UNIQUE) INTEGRATION.REG_PK Cost: 2  Bytes: 6  Cardinality: 1                           
                             26 TABLE ACCESS BY INDEX ROWID TABLE CHARTDEV.MS_STATS_OL_MS Cost: 10,984  Bytes: 1,310,574  Cardinality: 38,546                           
                                  25 BITMAP CONVERSION TO ROWIDS                      
                                       24 BITMAP AND                 
                                            16 BITMAP MERGE            
                                                 15 BITMAP KEY ITERATION       
                                                      13 INDEX FAST FULL SCAN INDEX (UNIQUE) INTEGRATION.REG_PK Cost: 2  Bytes: 6  Cardinality: 1 
                                                      14 BITMAP INDEX RANGE SCAN INDEX (BITMAP) CHARTDEV.MSST_OL_MS_RPG_ID_I
                                            18 BITMAP MERGE            
                                                 17 BITMAP INDEX RANGE SCAN INDEX (BITMAP) CHARTDEV.MSST_OL_MS_TIM_ID_I      
                                            22 BITMAP MERGE            
                                                 21 BITMAP KEY ITERATION       
                                                      19 TABLE ACCESS FULL TABLE (TEMP) SYS.SYS_TEMP_0FD9D6614_166B4444 Cost: 2  Bytes: 13  Cardinality: 1 
                                                      20 BITMAP INDEX RANGE SCAN INDEX (BITMAP) CHARTDEV.MSST_OL_MS_FMT_ID_I
                                            23 BITMAP INDEX SINGLE VALUE INDEX (BITMAP) CHARTDEV.MSST_OL_MS_CLA_ID_I           Can anybody suggest what's going on?? Why do i get results with one and not the other!!
    Edited by: tri_harder on Dec 10, 2008 10:00 AM
    altered the first query to change the IN operator to =

  • Why does imovie need to keep the original file after I have edited?

    I record basketball games with my ipad and I keep the footage but cut the video so I can make highlights for the season. Thing is, these original videos are usually close to 10GB each and over an hour long.
    I might have 5 minutes of highlights when Im done.
    So to save space in my Imovie projects, I kept the clips i want and deleted the videos. When I came back to add more video to my season project, it said missing file.
    Does it need to save the entire original media after I cut the video? I dont want to keep every game on my computer, I just want to keep what I cut and throw the rest out. But Imovie is asking for the original file.
    Any solutions for this, or do I need to upgrade to a more professional editor?

    Hi
    You are using a - Non Destructing Video Editing program.
    Meaning that Your movie in making ==> Project - DO NOT contain any movie or material at all - BUT only a text document pointing to where material is stored e.g. folder iMovie Event's, other hard disks, DVDs, CDs or USB-memories.
    And if any of these storage's are moved or disconnected - iMovie get's lost and can not View Your Project.
    iMovie - do not have any "Media Managing Function" as FinalCut Pro (as it can reconnect moved material and create a complete contaning folder)
    Even when You Shared Your movie - there still will be links back to material - to make it possibly to further editing's, and Sharing in other resolutions.
    This is the cost of working this way. So I use an external hard disk for storage
    - MUST BE - Mac OS Extended (hfs) formatted - UNIX/DOS/FAT32/Mac OS Exchange will not work for VIDEO
    - Moving Video Event's - MUST BE DONE WITHIN iMovie Application - ELSE connections will be broken - meaning HARD to IMPOSSIBLY to mend later. Be aware !
    All other material I store in Folders named as movie project + date - all from start on the external Drive.
    Yours Bengt W

  • TS2776 why does my computer give me a cant find files notice when syncing my ipod? only about 1/2 of the songs transfer to computer out of the ipod. and the file must be on the ipod because i can play the song on it. i want to transfer all songs to my ipa

    why can't i transfer all songs on my ipod to my computer and then to my new ipad? i keep getting a message saying that about half of the files couldn't be found, and only about 1/2 of the songs went to the ipad when i first synced. the files must be on the ipod, because i can play all 448 from the ipod when disconnected from the computer. and all songs show up on my devices at itunes and can be played on the computer. but only about 1/2 are going to the ipad. i am no tech genius, obviously, but could someone please help me? thanks

    Apple does not support transferring files from the device to the computer if they are third party.  It is great that you were able to transfer the ones you did.  There is a way to do it but it sounds like you already did it because if not half of them would not come over.  The files can probably not be found because they are third party and the files are not compatible with the transfer process.

  • Why does "theme" doesn't change the fonts?

    I have imported a powerpoint presentation, yet when I choose a specific theme, it only changes the background and not the fonts. Do you know why? What can I do to fix it? Is there any easy way to replace all fonts and colors?
    Thank you!

    You should also ask this in the MacBook Pro forum. This is the forum for the 13” white and black plastic MacBooks that were discontinued in 2010 and didn't have the illuminated keyboard. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/notebooks/macbook_pro

  • When I move files between mac the creation date changes, I want to keep the original dates.

    When I move files between a couple of Macs the creation date etc chnges to the time I'm moving them.
    I need to keep the original details.

    Well it now looks like it has sorted it's self out, all working fine now.

  • HT1918 I purchased Iphone in London. Then i shifted to India after 1 yr and now i want to change the account info. But when i tried to change the credit card details in itunes, i get an error message that this card is not valid in UK.

    I purchased iphone in London one year back. Then i shifted to India recently. Now when i want to change my credit card detail in itunes, i get an error message that This card is not valid in UK. But i am no more in UK now. In the same page i edited my address but itunes does not change that details showing the above error message.

    So you are trying to change the account from India to the Uk right...? Cause it wont accept UK card if you're trying to keep it for India...

  • I want to change the end date in SAP HCM Appraisal model

    Hi all,
    The short dump gives out this message:
    Object type SUBTY cannot be read for message type HRMD_A from segment type E1PLOGI
    i want to change end date of the appraisal model multiplier, where i have to go and change the same.

    declare variable:
    DATA : gv_date(10) TYPE c.
    and assign value to it:
    CONCATENATE sy-datum+4(2) sy-datum+6(2) sy-datum(4) INTO gv_date SEPARATED BY '/'

  • Why does Messages not list message threads by date/time even when selected?

    Every thread in messages list messages out of date/time order even when selected.  How does one correct this or get them in the order I want?  Thanks!! BF

    HI,
    This happened with the Messages Beta as well as the full version in Mountain Lion.
    In both cases if one device was Off line whilst a conversation was going on the sync process when the device was turned on  would not be instant.
    It would fill in (sync) more like an only slightly speeded up chat.
    Consequently  if you were moving from a iPhone conversation to the Mac and turned the Mac On your Contacts new IMs could be mixed up with the Sync info arriving.
    At the same time even though the whole IM sending thing is time stamped there appears to be no way that the App or the iPhone or the Mac can recognise the timing and move them into the right order.
    There seem to be more reports of the Mac being Off and not updating the conversation properly than there are iPhones doing the same.
    That could be done to this area being about the Messages app compared to the iPhone Area.
    It could also be down to the way people hold their conversations in the first place.
    i.e.  we know about it but it is outside our ability to suggest something that fixes this.
    For the points
    7:23 PM      Friday; October 19, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • I do not want all of the playlists in iTunes to be synced to my iPhone. With iCloud I do not seem to have a choice. How do I select only certain playlists for my iPone?

    I have many songs and playlists in my iTunes account.  I do not want all of them synced to my iPhone 5S, but that has happened via iCloud, and it has caused a storage problem on my phone.  How do I select only certain playlists to be synced to my iPhone? 

    You need to start over with Music. On the iPhone Music screen uncheck sync music. Also, on the Summary screen uncheck "Manually manage music and videos", then sync and it should clear off your phone.
    Next, choose the music you want to sync. If you want to fit more on check "Convert higher bit rate songs to 128 kbps AAC". This will reduce quality slightly, but it won't be noticable unless you are using $300 headphones.

  • HT4437 How do I change the display output orientation to my TV from my iPhone?

    The ABC app on my iPhone5 displays sideways (portrait) when outputting to my TV while using Air Play. How do I change the orientation output to my tv when using apps such as ABC?

    Unless you are mirroring you can't

  • Why is iTunes repeatedly saying that the comp is not authorized to sync with my iPhone despite having repeated the steps to authorize it??

    iTunes does not sync with my iPhone; saying that the comp has not been authorized to. It suggests that i authorized it by going to Store > Authorize This Computer. I did exactly that, and it still refuses to sync.
    I'm not able to sync my music, videos, photos, etc as a result.
    This occurred after i had synced my iPhone to another comp in another location recently.
    Please help!

    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases

  • How do I change the double-sided print setting when printing from a website

    I used to know how to change my printer settings when I used a PC but now that I'm using a Mac it's a completely different story.  Usually when I print I'm given a print preview screen where I can make choices how to print but some websites just send materials directly to the printer without providing me with a print preview screen so I can change the settings, for example, disabling the double sided feature.  Can anyone provide me with simple directions how to correct this issue?  I have a MacBook Pro & am printing to an Epson WF-3540.  I'm now very computer literate unfortunately.  Appreciate any suggestions, especially those that are fairly simple.  Thanks so much

    Usually when I print I'm given a print preview screen where I can make choices how to print but some websites just send materials directly to the printer without providing me with a print preview screen so I can change the settings,
    I cannot identify with what you are saying, as this has never happened to me.
    This is a print preview dialog box, in its expanded state. The document it is about to print is the print dialog box, in its non-expanded state. The red arrow points to the control.
    Once expanded, there are several screens full of options you can choose from. They are under the pop-up labeled [ Preview ] on this example.

  • Why have "All Day" events moved forward by 24 hours when syncing from my iPhone to iMac?

    When I syncd my calender from my iPhone 3Gs to iMac for the first time, it moved all the events entered as "all Day" forward by 1 day on iCal. It didn't do that to events with a set start and finish time on a day.I have checked the date/time settings on both the phone ( in general settings and under mail, contacts calenders) and on the imac and all are as they should be. Whats next?

    Angela,
    Quit iCal, open System Preferences...>Language & Text>Formats>Region: and set/re-set the appropriate region.
    Then log out/in or restart and see if the problem is corrected.

Maybe you are looking for

  • Time Capsule can't be found!

    I successfully connected my time capsule to my existing network. I managed to even backup my system. Onthe second backup run, it failed. An error message stated that the time capsule was disconnected. It was plugged into the wall and a solid green li

  • Bibean tutorial olap connection gives ora 942

    Hi, I'm working my way through the bibean tutorial. I have not made much progress. I'm stuck at the point where I create the BI Designer via wizard. I'm seeing this error: oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo

  • NAC deployment

    Hello there! I have 2 NAC Appliance 3310. I want to configure them both as Clean Access Servers(CAS). One will be fail over for the other. In this deployment i will have no Clean Access Manager. Is this possible? If possible how will i configure the

  • 10.5.4 Jammed at spinning gear RAID

    After installing the update from 10.5.3 to 10.5.4 the computer got stuck with the spinning gear. It is on a *RAID 1* mirrored array. I had to switch back to 10.4.11, on another RAID 1 set, and +repair the disks+ 10.5.4 was trying to boot from before

  • Saving query results to a file

    How do i store the results of the a query into a file? Following is the query i am trying to use... Thanks. StringBuffer sb = new StringBuffer().append("SELECT ").append(select)                     .append(" FROM ").append(DISTRIBUTOR_TABLE);