ICal/Outlook time issue.

When I accept appointments generated from Outlook .ics files, iCal changes the time of the event in the reply email. How do I correct this? The date of the event in iCal is correct, it's only the confirmation to the event generator that is wrong.  I'm always sending apologies and explaining that I indeed have the correct date and time.

I am having a similar problem:  invitations sent (presumably from outlook), when accepted from my iPad, appear in the calendar with the wrong time zone.
this actually happens even when the meeting is in the same time zone I'm in:  I am in GMT -5, and even when the meeting is in GMT-5, it defaults to GMT (or, in some instances, PST).  My settings have my time zone set correctly.
Any help much appreciated.
PS:  Using iPad original wit iOS5

Similar Messages

  • ICal & Outlook Time Difference

    Hi,
    When I created & send an iCal invite to my colleagues who are using Outlook in PC, there seems to be a bug in the time.
    Let say I put the event time is from 10:00am to 11:00am, but the recipients Outlook PC shown 10:40am - 11:40am.
    How come there is a difference, of 40mins?
    Appreciate your assistance, thks!

    You have to play around and make sure you have daylight savings/time zone/GMT offset etc set correctly. This post http://discussions.apple.com/thread.jspa?messageID=2627433 gives an idea of things to try out.
    20" iMac Intel Core Duo 2 GHz   Mac OS X (10.4.7)  

  • Restoring iCal from Time Machine

    I accidently deleted my calendars from iCal and then my blank iCal synced to mobileme and my iPhone so I lost everything. When I try to restore my iCal from Time Machine, it initially shows all my calendars when I open iCal, then it syncs to mobileme and I get a blank iCal again.
    Here's what I do:
    1. Quit iCal.
    2. Delete Calendar folder from Home>Library.
    3. Restore Calendar folder from Time Machine using the gear icon and "Restore to ..."
    Then when I open iCal it restores perfectly, then syncs to mobileme and erases again.
    After talking to an apple tech, he suggested going into iCal's preferences and deleting the mac.com and trying the above steps again. That doesn't work. I even tried going into System Preferences>MobileMe>Sync>Advanced>Reset Sync Data to replace info on mobileme with sync info from my computer. That didn't work either.
    What step am I missing to restore my iCal from Time Machine?

    kanagashi,
    You are welcome...thanks for your kind comments.
    I'm still having sync issues with MobileMe though, the "On My Mac" calendars aren't syncing to MobileMe.
    The "On My Mac" calendars will not sync to MobileMe. Did you complete Roger's checklist under the "Reconnect to the internet. Your MobileMe calendars will disappear as before. Now carry out the following process with each of the 'On My Mac' calendars:" paragraph?
    Syncing should be possible after carrying out those steps.

  • Outlook 2010 issue - How to fix it

    Faulting application name: OUTLOOK.EXE, version: 14.0.7105.5000, time stamp: 0x51e84e55
    Faulting module name: ntdll.dll, version: 6.1.7601.18247, time stamp: 0x521ea8e7
    Exception code: 0xc0000420
    Fault offset: 0x000ce753
    Faulting process id: 0x690
    Faulting application start time: 0x01ced46d37d6a689
    Faulting application path: C:\Program Files (x86)\Microsoft Office\Office14\OUTLOOK.EXE
    Faulting module path: C:\Windows\SysWOW64\ntdll.dll
    Report Id: 9091764d-4060-11e3-8dfd-534e57000000

    Hi,
    Is this an Outlook crash issue?
    We may suspect there’s a 3rd-party add-ins that may be the possible reason, let's troubleshoot this from running Outlook in Safe Mode, to determine if it is 3rd-party add-ins related.
    Press Win + R and type “outlook.exe /safe” in the blank box, then press Enter.
    If there’s no problem in Safe Mode, disable the suspicious add-ins to verify which add-ins caused this issue.
    We can also perform a clean boot to determine if background programs are interfering with Outlook:
    http://support.microsoft.com/kb/929135#appliesto
    The ntdll.dll file is a file created by Microsoft that has a description of "NT Layer DLL" and is the file that contains NT kernel functions.
    You may try to copy this file from a well worked machine and replace the old one to test if this helps.
    Regards.
    Melon Chen
    TechNet Community Support
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • ICal prints times in front of event entries, I don't want these times entered. How to remove them?

    iCal prints times in front of event entries, I don't want these times entered. How to remove them?

    Go to your Flagged Photos Smrt Album on the Left.
    Command - a will select All
    Then File -> New -> Album
    Regards
    TD

  • I just installed Yosemite.  Notifications Center will not show ICal entries that were on my ICal at time of installation.  How do I get events to show in Notification Center?

    I just installed Yosemite.  Notifications Center will not show ICal entries that were on my ICal at time of installation.  How do I get events to show in Notification Center?

    Submit your feedback requesting this feature directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • Time issue- urgnt

    HI Expert !
    I m using this code .
    LTIME TYPE SY-UZEIT
    T1 TYPE SY-UZEIT VALUE 030000,
    T2 TYPE SY-UZEIT VALUE 050000,
    BUT WHEN I M USING T1 AND T2  in loop ( if  statement ),ITS value r
    T1 =  082000.
    t2  = 131100 .
    if  t1(6)  t2(6 )
    ltime (6 ).
    then ok . but in this i wont be able to make comparison in if statement
    how i can resolve this time issue
    i dont want to include timings between 3.00 a.m and 5.00 ,
    for this i have used this code but its not updating data for any employee , is this code correct or not.
    OPEN DATASET PA_FILE FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    DO.
    READ DATASET PA_FILE INTO REC.
    CLEAR WA_PUNCHES.
    IF SY-SUBRC <> 0.
    EXIT.
    ENDIF.
    WRITE: / REC.
    if NOT ( WA_SCORE-LTIME GE T1 AND WA_SCORE-LTIME LE T2 ) .
    AND
    ***( WA_SCORE-TERID NE TR3 AND
    ***WA_SCORE-TERID NE TR4 AND
    ***WA_SCORE-TERID NE TR5 AND
    ***WA_SCORE-TERID NE TR6 AND
    ***WA_SCORE-TERID NE TR7 AND
    ***WA_SCORE-TERID NE TR8 ) .
    WA_SCORE-PERNR = REC+0(8) .
    WA_SCORE-LDATE = REC+9(8) .
    WA_SCORE-LTIME = REC+18(6) .
    WA_SCORE-CANID = REC+25(8) .
    WA_SCORE-TERID = REC+34(4) .
    APPEND WA_SCORE TO IT_SCORE.
    ELSE .
    EXIT .
    ADD 1 TO COUNT.
    ENDIF .
    ENDDO.
    plz help me . its very imp. program .
    thanks

    Hi,
    Pass values in quotes
    T1 TYPE SY-UZEIT VALUE '030000',
    T2 TYPE SY-UZEIT VALUE '050000',
    Can you please check once again after making this change in debug mode, values of T1, T2 and LTIME.
    ashish

  • Time issue seems odd to me

    I put a secondary domain and po at a remote location - running 8.03 on Sles/Oes and moved all of the "local" users to that po.
    while everything seems to run ok we have a weird time issue.
    Mail into and out of the new mailboxes shows a three and a half hour time difference both in the date column in the groupwise client and in the printed header of the email.
    The odd thing is that if I go to the properties of the email - the Creation date and the File date and time are both correct.
    I can't see any time issues with the servers (primary or secondary) and especially something that would be 3:30 minutes off
    there is a timezone difference between the pri and sec but that's just 1 hour.
    Any thoughts?
    As a workaround I have had my users add the creation column to see when they actually received the email as our clients have time critical projects.
    Thanks
    Dennis

    Danita,
    Thanks for the reply - Oh how I wish it were that easy - I've checked and double checked the PO object and the domain object - both say US eastern time.
    If I send email from a mailbox on the secondary to the primary - everything is correct (a 1 hour time difference - Eastern to Central)
    If I send mail from a mailbox on the primary to the secondary - it shows up right away, but says 3:30 minutes later than it should (in Date/Time, but not in Created)
    If I send email from a mailbox on the secondary to a GMail account - the header shows the 3:30 offset, but the properties of the mail shows correctly.
    I would be happy to send email from that po to anyone that wants to see for themselves.
    Other than the PO Object and the DOM object - Where should I be looking for a time difference
    and how would it be getting UTC minus 30 minutes - - Is there a special timezone out there for Hy Brasil?
    The workstations all get their time settings from "time.windows.com" the windows default.
    Thanks for looking into this - I just hope that I can get it figured out because as small of an issue that I think it is (they get their email, it just looks like it gets read before they officially receive it)
    but it seems that this office uses the received time to track how long it takes them to do their work.
    Dennis

  • Real time issue

    Hi all,
    Can any body plz send me some FICO real time issue on [email protected]
    and plz tell me hw shld I prepare for interview
    Thanks & Regards
    Vaibhav

    Hi Balraj,
    In the normal practice, developers will try to find the similer infocube (as per the requirement) in the Business content. But always you will not be lucky to find such infocube in Business content. You need to create at your own to suite the business requirements. Regarding the characteristcs & key figure, it 's again depend on the requirements. Calculated object can be assign as key figure like. Sales qty, revenue & net sales etc. where as Dimesion (characteritcs) will be purely depends on the reporting point of view. Like Customer, Material & Sales Document type etc.
    Hope this will help you !
    Thanks,
    Sanjiv

  • Execution Time Issue

    Help Please!!!
    I've been searching for an execution time issue in our application for a while now. Here is some background on the application:
    Collects analog data from a cDAQ chassis with a 9205 at 5kHz
    Data is collected in 100ms chunks
    Some of the data is saved directly to a TDMS file while the rest is averaged for a single data point. That single data point is saved to disk in a text file every 200ms.
    Problem: During operation, the VI that writes the data to the text file will periodically take many hundreds of milliseconds to execute. Normal operation execution times are on the order of 1ms or less. This issue will happen randomly during operation. It's usually many seconds between times that this occurs and it doesn't seem to have any pattern to when the event happens.
    Attached is a screenshot of the VI in question. The timing check labeled "A" is the one that will show the troubling execution time. All the other timing checks show 0ms every time this issue occurs. I simply can't see what else is holding this thing up. The only unchecked subVI is the "append error call chain" call. I've gone through the heirarchy of that VI and ensured that everything is set for reentrant execution. I will check that too soon, but I really don't expect to find anything.
    Where else can I look for where the time went? It doesn't seem to make sense.
    Thanks for reading!
    Tim
    Attachments:
    Screen Shot 2013-09-06 at 9.32.46 AM.png ‏87 KB

    You should probably increase how much data you write with a single Write to Text File.  Move the Write to Text File out of the FOR loop.  Just have the data to be written autoindex to create an array of strings.  The Write to Text File will accept the array of strings directly, writing a single line for each element in the arry.
    Another idea I am having is to use another loop (yes another queue as well) for the writing of the file.  But you put the Dequeue Element inside of another WHILE loop.  On the first iteration of this inside loop, set the timeout to something normal or -1 for wait forever.  Any further iteration should have a timeout of 0.  You do this with a shift register.  Autoindex the read strings out of the loop.  This array goes straight into the Write to Text File.  This way you can quickly catch up when your file write takes a long time.
    NOTE:  This is just a very quick example I put together. It is far from a complete idea, but it shows the general idea I was having with reading the queue.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    Write all data on queue.png ‏16 KB

  • Calendar sync between iCal, Outlook 2011 and 2010 and iCloud

    All,
    I'm having trouble syncing calendars on my devices and I haven't been able to find a workable solution yet. I know this topic has been covered extensively, but I haven't found anything that works.
    I want to be able to sync my calendars (email works just fine) between three devices: A MBP (Mountain Lion) running Outlook 2011, iPhone 4S (Calendar App) and a desktop (Win8) with Outlook 2010.
    Currently, I have no problem syncing the desktop with my iPhone (using iCloud) and these events sync into iCal on the MBP. Outlook 2011 on the MBP syncs into iCal using Sync Services to the "On My Mac" calendar. All of my previous calendar entries are single events in the iPhone, Outlook 2010 and Outlook 2011, but show up as duplicates in iCal (one entry is in the iCloud calendar, and other is in the On My Mac calendar). Since I don't use iCal as my "working" calendar program on my MBP, the duplicates are fine if it works as an interface between iCloud and On My Mac.
    For any new calendar items, however, I must obviously select which calendar they'll appear in. As suspected, if I select iCloud, the items all sync to iCal, Outlook 2010 and my iPhone, but not Outlook 2011; conversely, creating events in Outlook 2011 syncs via On My Mac to iCal, but not the devices as using iCloud.
    It seems to me that if a rule could be made in iCal which duplicated any event from On My Mac into iCloud, and another rule which duplicated iCloud events into On My Mac, there would be complete syncing across the programs, with obvious duplications of events in iCal (which is fine by me). I'm not a programmer and I have no idea how to, or even if, this can be done.
    Has anyone else found a way to make this work, or have any other solutions?
    Any help is greatly appreciated.

    Outlook 2011 is not compatible with iCloud, it won't work and your 'workaround' may affect iCloud clients on the same account.
    Don't use 2011.

  • Time issues? time zone settings appear in two places

    If you leave the default "set time and date automatically", you see the time zone support below and you can check it or uncheck. You can then set your time zone there. But if you uncheck the automatic date and time, you get another time zone choice and the default is Cupertino, of course. I wonder if that's the problem with some of these time issues.
    I've since unchecked automatic date and time, set my city's time zone, then rechecked automatic. The only weirdness I've seen was with an excel spreadsheet where the time was correctly shown on my mac, but not on the iphone. Unfortunately I don't have that sheet anymore or I'd try again to see if it works now.
    Just a thought.

    I noticed the same thing and did the same thing you did because my time was off by several hours each time I turned the phone on...after it being off overnight. When it was off by only 1 hour I could turn the Auto OFF then 'tap' the timezone (already set to the correct city) and the time would instantly correct itself. Then I'd turn Auto back ON.
    Turns out that my time issue was related to having the SIM PIN enabled. Once I disabled that, the time's been correct every day.

  • Real  time issues

    hi there,
    can any one share some of the issues that have been dealt with in real time. i.e.during blue print stage, <b>especially in realisation stage</b>, final preparation stage
    puhlease answer this question immediately

    Hi Medasani,
    Real time issue you can get it from the Sap support consultants. Hence, getting all the information is very difficult.
    In what basis you are asking let me your requirements.
    For Example :- Tolerance limits is has to increase to Rs.1 to Rs.100. for employees and vendor / customer. This is the issue from client.
    How you will decide that to increase.
    First you should understand the clinet work flow and get the approval from client end (core Team) then you have to increase meanwhile you have to decide the % also.
    Oba3 /Oba2
    Warm Regards,
    Sivakumar Sathiyamoorthy

  • [SOLVED] Yet another time issue...

    Hi there,
    I'm having some crazy, hair pulling, head banging UTC time issues on both my dual boot (Arch & Windows 8) desktop and single boot laptop.
    I've been searching and following a mulitude of old threads and the official Wiki guide, however, I simply cannot get UTC time to stay correct between reboots. I've installed Arch a fair few times now, both before and after the switch to systemd and in dual and single boot setups and have never had time related issues like this before...
    Here's a run down of the whole sorry story....
    Fresh install - set time with hwclock --systohw utc as suggested in the beginners guide.
    First boot - time an hour out - huh? cat /etc/adjtime and ls -l /etc/localtime - everything as it should be... UTC and symlink to /usr/share/zoneinfo/Europe/London. Nonetheless I duly follow the Time guide on the wiki, get to know timedatectl a bit, and soon after, time is set to be correct. Great.
    Reboot. Time an hour out. Whaaaa??. Start googling, finding a plethora of bbs links to others with similar issues, decide to use NTP. Install, ntpd -qg. All good again. Time right. Phew...
    Reboot. Nope. Arrrrgggghhhh. (Bare in mind - at this point I haven't even booted the Windows 8 disc, and I went through the exact same process on my Arch only laptop...)
    More googling, thread reading. Find out that hwclock and ntp might be in conflict. Delete /etc/adjtime, reinstall tzdata, re-follow Time article to the letter and reenable NTP to start at boot.
    Reboot - time is foward an hour yet again. Bang head repeatedly on desk. Then suddenly - 10 mins or so after boot - NTP kicks in, and time is magically goes back an hour to the correct time! Surely NTP should be doing this early in the boot process, not 10 minutes after? But OK, at least something is happening...
    Next I dare to boot into Windows, and yup, time an hour out. Expected, but frustrating nonetheless. Add the registry tweak as suggested in the guide, and turn off the Windows time synchronisation. During which I noticed that Windows 8 time is set to UTC by default, not localtime, which is what the wiki says. Is this a Windows 8 thing?
    I can't help thinking, that if this is the case, and the Wiki advise is written under the assumption that Windows time is always localtime, that perhaps this is the route of my problem....
    Anyway, Windows time all good now, reboot Arch, time again wrong untill NTP finally kicks in - sigh. Reboot to Windows. Time an hour back. Gaaaahhhh - WTF?!! reset it to be correct. Try again. Same thing. Oops, forgot to mention that on each reboot, I check the BIOS clock, which remains persistently correct during the whole debarkle...
    Ok, so I try without the registry hack and turn Windows sync back on. Still fucked. I try various combinations of the two, I try resetting Arch time over and over again. With NTP - late sync. With hwclock only, or both hwclock & NTP - totally fucked! Eventually, I give up on UTC in Arch, set it localtime, delete registry key, turn Windows time sync back on, and thus far all good......
    TL;DR - couldn't get hwclock to set UTC time correctly across reboots. NTP worked (sort of), but after each reboot it would take ten minutes for the time to sync and the clock to move back an hour to the correct time. Localtime just works...
    My question is - why is the wiki (and the timedatectl status output for that matter) - so adamant that we should use UTC? From what I can gather, as long as I boot Windows around the DST time. or manually move the clock forward or back an hour - all should be well, no? Or are there other issues that I may run into that I've missed? The thing I'm most concerned about is data corruption due to timestamp issues...
    Also, why does the wiki repeatedly say that Windows uses localtime, when this doesn't appear to be the case in Eight? Does the wiki need updating or is Windows lying to me? I know which I'd put my money on ;-)
    Finally can anyone explain why my time was always an hour forward after a reboot, even when the time was set correctly before, the BIOS showed the correct time, and NTP was in use?
    Sorry for the crazy long posting, but this issue has been driving me totally batty!! Any light-shedding greatfully appreciated :-)
    Last edited by knowayhack (2013-08-10 15:24:09)

    Ok, so I set the clock back an hour in the BIOS, booted Windows - time right - YAY.
    Rebooted Arch - time right. OMFG - pure joy!!!
    I have to say, I still find it odd that this is how it works, and would like to confirm that things are looking as they should in the output from the following commands....
    toby@archy ~ > timedatectl status
          Local time: Sat 2013-08-10 15:42:56 BST
      Universal time: Sat 2013-08-10 14:42:56 UTC
            Timezone: Europe/London (BST, +0100)
         NTP enabled: n/a
    NTP synchronized: no
    RTC in local TZ: no
          DST active: yes
    Last DST change: DST began at
                      Sun 2013-03-31 00:59:59 GMT
                      Sun 2013-03-31 02:00:00 BST
    Next DST change: DST ends (the clock jumps one hour backwards) at
                      Sun 2013-10-27 01:59:59 BST
                      Sun 2013-10-27 01:00:00 GMT
    toby@archy ~ > sudo hwclock --debug
    sudo: timestamp too far in the future: Aug 10 16:39:24 2013
    We trust you have received the usual lecture from the local System
    Administrator. It usually boils down to these three things:
        #1) Respect the privacy of others.
        #2) Think before you type.
        #3) With great power comes great responsibility.
    [sudo] password for toby:
    hwclock from util-linux 2.23.2
    Using /dev interface to clock.
    Last drift adjustment done at 1376148264 seconds after 1969
    Last calibration done at 1376148264 seconds after 1969
    Hardware clock is on UTC time
    Assuming hardware clock is kept in UTC time.
    Waiting for clock tick...
    ...got clock tick
    Time read from Hardware Clock: 2013/08/10 14:43:20
    Hw clock time : 2013/08/10 14:43:20 = 1376145800 seconds since 1969
    Sat 10 Aug 2013 15:43:20 BST  -0.953640 seconds
    Is it OK to now reinstall NTP to keep the clock in sync on Arch, and are the Windows reg tweaks still necessary on Windows 8?
    Thank you guys SOOO much for all the unbelievabley speedy help on this issue - you have no idea how much this has been stressing me out!!
    Last edited by knowayhack (2013-08-10 14:54:31)

  • Communication channel availablity time issue

    Hi All,
    We want to schdule communication channel every  mid night ,but when i tried to give the time there is a diffrence of about 6 hours .so evry time if in need to schdule need to calculate and schdule the time ,checked out the server timing it is similar to system time ,even messages in MONI also showing the correct time ,do we need to check anything in the adpter engine to correct this time diffrence.
    Appreciate reply on this.
    Thanks,
    Madhu

    Madhu
    Iu2019m not sure if this is exactly your issue, but please see the following links concerning time issue in XI.
    Time setting is differnt in sxmb_moni and RWB
    Different time stamp in sxmb_moni and RWB
    Hope this helps.
    PJ

Maybe you are looking for

  • Can't get navigatetourl to work

    i've created a flash animation with as3. at the end of the timeline i've got a stop(); action on the last frame which is working just fine. on the following frame i have the navigatetourl action navigateToURL(new URLRequest(" http://www.mydomain.com/

  • Help...How to Play Video and Auido using windows media player in developer forms?

    I am using the Windows NT workstation and Oracle Forms6i, I want to know how to use window media player in oracle forms? I have insert an OLE object and add Windows media player as an control object, but I don't know how to play the audio and video.

  • KEPM Help

    New to controlling. Trying to do integrated planning for Sales and Operation Planning for PP. Created Planning method,version, forecast profile. Maintained relationship between SD and COPA fields.Copied all the sales history through KE4S to COPA. How

  • Unable to form a single cluster island.  Two clusters formed and kills one

    I am trying to use ReplicatedCache and deployed the web application on four Webspher appserver JVMs in two linux servers (2 boxes). Server1 (A&B) Server2 (A&B). Server1A and Server2A physical clusters and likewise Server1B and Server2B are physical c

  • When I try to make a new or open a podcast in GB the program quits.

    Everytime I try anything to do witht the podcasting part of GB it quits. However, the music part does not. Also, I looked this up os discussions already and repaired my permissions but I could not find and .plt or .cs files in my GB folder. I was abl