Editing/changing an invitation

I was hoping to use iCal Server to manage the scheduling for our division, but have run into an issue that might make this very difficult. If one creates an event and invites people to it, but then needs to change it, it looks like new invites are not sent out. I imagine that they are if one adds a new attendee, but here are some changes that I tried which did not result in any changes for the individual users' calendars:
- Removing an attendee
- Changing the time of the event
- Deleting the event after changing the time (it asks me if I want to notify the attendees, but it does not actually notify them)
If I delete the event without changing it, it does correctly notify people, and remove the event after they acknowledge the anti-invite. However, this seems like a terrible system; if the event organizer accidentally modifies the event slightly, say by accidentally dragging the event to a new time rather than just selecting it, then canceling the event might not notify the attendees even though it says that it will. Moreover, the event remains on the users' calendars, altering their availability, even though the event(s) which make them unavailable no longer exist!
I don't see any other posts on this issue; I guess I should prepare a bug report.
Greg

Let's start out with the basic question: are you seeing the 'Update' button on the Event when you are making these changes?
My experience is that sometimes it's a two-step process. For example, if I change the time by dragging the event, that alone won't update it; you'll need to double-click on the event to open it, then the 'Update' button should be visible and active, and clicking on this button will update the event changes.
You might also see a 'Done' button when you make other changes to the event, and it seems that clicking on the button will update the event (it doesn't). In such cases, click somewhere else on the event to display/enable the 'Update' button. (I think that removing an attendee is such an instance of this.)
Then, there are times when I will need do something like add text to the 'Notes' field in order to update the event. But those times are rare. (I can't even think of one example right now.)
I always manage to get things to update. The key is to trigger the enablement of the 'Update' button. It just takes a little time to get accustomed to it's usage.

Similar Messages

  • How to check who has edited the meeting invites on calendar

    Hi,
    we are in exchange server 2010 environment. How do we check who has edited the meeting invites on calendar? 
    I tried with get-calendardiganosticlog. But no help..
    Sankar M http://messagingdevelopment.blogspot.in/

    First of all, I would like to confirm if you have
    assigned any privilege
    to someone as an Editor. If so, he/she would be able to change, edit or delete meeting requests. You may enable auditing for such changes that will help you to check the changes such as,
    who was the person of changes. Please refer to this well described article that helps to understand this concern step-wise :
    http://msexchangeguru.com/2011/07/14/outlook-meeting-vanishing/
    Moreover, here is another good auditing resource (http://www.exchangeauditing.com/) that could be an appropriate solution to track such changes made in exchange server at granular level and get the captured
    auditing data into real time.

  • In ALV Report ,a field to allow the user EDIT/CHANGE

    Hi Guys,
    My requirement is
    in the ALV Grid display iam having 10 fields.5th field should be allow the user EDIT/CHANGE mode.
    what ever he enters the value the same should be updated to an custom table.
    EX.
    o/p:
    0001   0002   0003   0004   0005   0006   0007  0008   0009   0010
    Now the user changed the value 0005 to 0011.
    0001   0002   0003   0004   0011   0006   0007  0008   0009   0010
    now 0011 should be updated in custom table.
    to do this process please suggest a best way for coding.
    thanks in advance.
    Sunil.

    hi
    *& Report  ZTESTDEMO_INTERACTIVE_LIST_2
    REPORT  ZTESTDEMO_INTERACTIVE_LIST_2.
    TABLES: MARA,MARC,MARD.
    * internal table itab_mara 3 fields matnr, ernam,mtart
    DATA: BEGIN OF ITAB_MARA OCCURS 0,
    MATNR LIKE MARA-MATNR,  " material number
    ERNAM LIKE MARA-ERNAM,  " name of person who create
    MTART LIKE MARA-MTART,  " Material Type
    END OF ITAB_MARA.
    * internal table itab_marc 3 fields matnr, werks,lvorm
    DATA: BEGIN OF ITAB_MARC OCCURS 0,
    MATNR LIKE MARC-MATNR,
    WERKS LIKE MARC-WERKS,  " Plant
    LVORM LIKE MARC-LVORM,  " Flag Material for Deletion at Plant Level
    END OF ITAB_MARC.
    * internal table itab_mard 2 fields
    DATA: BEGIN OF ITAB_MARD OCCURS 0,
    MATNR LIKE MARD-MATNR,
    LGORT LIKE MARD-LGORT,  " Storage Location
    END OF ITAB_MARD.
    SELECT-OPTIONS: S_MTART FOR MARA-MTART.
    INITIALIZATION.
    S_MTART-LOW = 'HALB'.
    S_MTART-HIGH = 'HAWA'.
    S_MTART-OPTION = 'BT'.
    APPEND S_MTART.
    START-OF-SELECTION.
    SELECT MATNR ERNAM MTART FROM MARA INTO TABLE ITAB_MARA WHERE MTART IN
    S_MTART.
    PERFORM DISPLAY.
    TOP-OF-PAGE.
    WRITE:/2(15) 'MATERIAL NO',20(20) 'CREATED BY',45(15) 'MATERIAL TYPE'.
    FORM DISPLAY.
    LOOP AT ITAB_MARA.
    WRITE:/ ITAB_MARA-MATNR UNDER 'MATERIAL NO' HOTSPOT ON,ITAB_MARA-ERNAM
    UNDER 'CREATED BY',ITAB_MARA-MTART UNDER 'MATERIAL TYPE'.
    HIDE: ITAB_MARA-MATNR.
    ENDLOOP.
    ENDFORM.
    AT LINE-SELECTION.
    CASE SY-LSIND.
    WHEN 1.
    SELECT MATNR WERKS LVORM FROM MARC INTO TABLE ITAB_MARC WHERE MATNR =
    ITAB_MARA-MATNR.
    PERFORM DISPLAY1.
    WHEN 2.
    SELECT MATNR LGORT FROM MARD INTO TABLE ITAB_MARD WHERE MATNR =
    ITAB_MARC-MATNR.
    PERFORM DISPLAY2.
    when 3.
    sy-lsind = 0.
    ENDCASE.
    FORM DISPLAY1.
    LOOP AT ITAB_MARC.
    WRITE:/ ITAB_MARC-MATNR HOTSPOT ON, ITAB_MARC-WERKS,ITAB_MARC-LVORM.
    HIDE: ITAB_MARC-MATNR.
    ENDLOOP.
    WRITE:/ SY-LSIND.
    ENDFORM.
    FORM DISPLAY2.
    LOOP AT ITAB_MARD.
    WRITE:/ ITAB_MARD-MATNR, ITAB_MARD-LGORT.
    ENDLOOP.
    WRITE:/ SY-LSIND.
    ENDFORM.
    regards
    ravish
    <b>plz dont forget to reward points if helpful</b>

  • On MacBook Pro, in iPhoto, I can't find the "DON  In MacBook Pro where do I find the "DONE" button to save my editing changes and revert back to my library.

    In MacBook Pro, where is the "DONE" button to save my editing changes and revert back to the iphoto library?

    If you're using the Adjust editing pane there is no Done button. When you done with the editing just click on the Photos button at the top or use one of the arrows at the top to advance to the next photo.  No done button required.
    OT

  • Edit changes not saved in CS5.5

    Several hours of edits were performed with frequent saves.  opened project next day and over 2 hour of edit changes were lost. Any one else run into this and is there a way to force the save?

    Be sure you opened the correct project.  It's happened before where someone has had two copies of the project in different locations and they opened the wrong one.

  • Is it possible to edit/change audio files in a published html5 file?

    Is it possible to edit/change audio files in a published html5 file?

    Theoretically, YES, but they would need to be in exactly the same format and have the same filename.  Why would you be wanting to do this?  If the new files are not the same playing length, this could potentially throw out any synchronisation with other elements in the presentation.

  • Command Click in edit changes color white balance and tint in edit

    Command Click in edit changes color white balance and tint in edit, what is happening?

    robwouds:
    Welcome to the Apple Discussions. Must be a hidden keyboard combination for temperature and tint. Not sure if the user can set different settings of each that the keystrokes will take you thru. Just hit the reset button in the Adjust pane to get it back to normal.
    Do you Twango?

  • Saving as SVG (w/out AI editability) changes artboard size ...why?

    Saving as SVG (w/out AI editability) changes artboard size ...why? ai saves the artboard dimensions as the frame, unless it decides to expand the frame to accommodate extraneous material. what is weird and disappointing is that ai does not read these frame values back in to recreate the artboard; you have to use preserve ai capability which attaches huge code. How to get it to retain the chosen artboard size?  Thanks, Rich.

    I have the same problem. When I save as AI and reopen it the graphics are crisp and align to the pixel grid. When I save as SVG and reopen it the graphics are no longer crisp and no longer align to the pixel grid. It looks like the artboard shifts .5 pixels right and down. That's just odd.
    Here's the screenshots (sorry 144dpi).
    AI File:
    SVG file: (do you see the .5 pixel shift?)
    This really concerned me because I am designing SVG's for the web - so they would look crisp on the pixel grid. I tested the SVG in html and it looked crisp on 72dpi and 144dpi displays. So the problem is only how Illustrator imports the SVG, which is very weird. Any thoughts why this happens?
    Also, i'm using Illustrator CS6.

  • Exporting photos with editing changes

    Hi, I am new to LightRoom. This question might be stupid, but I am having trouble exporting my photos and maintaining the editing changes that I have made. Here are the specifics: I made changes to many raw photos using LR on my desktop computer (Microsoft XP operating system). I then exported those photos, as raw photos and jpegs, to organize them within my hardrive and further edit at a later date. I recently purchased a MacBook Pro. I then copied those exported photos onto my external hard drive and copied them onto my MB. I then imported the file into LR and the original photos are there without any of the editing I did such as changing WB, sharpening, etc. I am wondering what I did wrong? Did I miss a step, fail to check or uncheck some box, or is this a issue with going between Mac and Windows? Any suggestions?
    Thank you,
    carrie

    One follow-up question...again, probably a naive one. Would I be able to tell the editing changes by looking at either the metadata or the developing tools of the jpg files that I edited in raw? Changes such as wb, sharpening, color boosting, etc. I am browsing through my jpgs and they don't appear to contain those editing changes that I speak of. Otherwise, Lee's answer makes sense to me. However, I am not sure if what my eye is perceiving is due to monitor differences. That is why I would like to see exactly if those changes registered.
    Thanks,
    carrie

  • HT1918 How do I edit/change the two security questions?  I do not recall answering these before and if I did, I do not recall my answers.

    How do I edit/change the security questions?  I do not recall answering them before and I now cannot purchase apps on my new iPad.  Thank you.

    Hi
    To reset your security questions you will need to contact apple either by phone or email, many people have asked this question before and most have all ended up contacting apple
    Hope this helps

  • IPhoto not saving editing changes:

    I am attempting to edit changes in my IPHOTO library and notice that it's not saving everything that I want. It is making some changes i.e. brightness/contract, however sharpness and other editing options are NOT being saved. Very odd, I am wondering if IPHOTO 6 has fixed this problem? It appears others are having this problems with issue as well and no there does not appear to be any concrete answers. Any help would be appreciated! Thank you!

    Hello, Phez,
    It may be that iPhoto's preference file has been damaged. Delete it and see if that corrects the problem. iPhoto will create a new one when it determines that the old one is gone.
    Go to YourUserName->Library->Preferences->com.apple.iPhoto.plist and delete that plist.
    Also, you should always repair permissions before and after any installations/upgrades. Applications->Utilities->Disk Utility. Select your hard drive's icon by its name, then be sure you are in 'First Aid' and choose 'Repair Disk Permissions."

  • Edited/Changed Value tracking in Jtable

    how will i keep track of all the values of a only those cells that are edited(changed) in Jtable having multiple row and columns.
    The reason for this is that I want to build a dynamic update query which updates only those cells(JTable corresponds to a resultset) that are changed.

    http://forum.java.sun.com/thread.jsp?forum=57&thread=234558

  • Why do my edits/changes to files outside of Lightroom not update inside Lightroom?

    I'm using version L1.4.1 on a Mac and have noticed that if I bring in a RAW file (either CR2 or DNG) to Lightroom, but then have to make edits/changes to it in a program outside of Lightroom, say Photoshop CS3 (RAW reader) later, it won't update the file and its new changes inside Lightroom unless I were to 'remove' the file from the library altogether and reimport it. With jpgs however, they update will be made, why is that and is there a way to do it?

    Did you notice lrdata file in your catalog folder? The lrdata file holds previews of your images – but not the original images.
    When you work with images in Lightroom: change levels, apply templates, etc – all of them run very quickly, and are completely reversible. You can go back in the process because LR DIDN'T CHANGE original files itself. Instead it stores them into lrcat and lrdata files.
    LR uses these files to show you previews you see when browsing the catalog. As long as LR doesn't know the file has changed, it shows you an older preview.
    As far as I remember, you can use the Library - Previews menu item to force LR to rebuild previews from updated files you upload.

  • Updating Color Project with Edit Changes in FCP

    Hi,
    My apologies if this topic as been discussed already and thanks for any input.
    So I finished a project in Color recently and the director then changed the edit in FCP. Some of the clips were either pulled or trimmed.
    Can I avoid starting from scratch since the edit change a tiny bit?
    Is their any way Color will can reimport the new (updated) sequence without losing all the grading I've already done
    Thanks!

    If the clip order and layer hierarchy are identical, then New Project, Import Color Corrections.
    If the clip order changes, there may be a slight chance that Reconform will work, but up until version 1.04, this will only be successful with single-layer only sequences. I am told that version 1.5 has a better chance of success.
    If there are only slight changes, then do a "difference" sequence, save the grades for those shots from your original COLOR project and then re-grade the changed shots, to reconform them into the (from COLOR) sequence.
    jPo

  • Interface programs of changing Bid Invitation and Quotation

    I have a problem about changing Bid Invitation and Quotation in SRM.
    I want to create custom applications including interface programs, so I think I have to call BAPI (Tr-cd:BAPI), Function Module (Tr-cd:SE37), or Enterprise Services (http://help.sap.com/content/documentation/esoa/docu_esoa_srm.htm).
    I found "BidInvitationEC" and "SupplierQuotationEC" in SRM BAPIs, but each of BAPIs doesn't support changing method. (Only Create Method is supported.)
    Please help us if you have a good solution.

    Thank you for your reply.
    We are going to create our custom application inside SRM,
    but we don't know which Functional Module we should use
    to change Bid Invitation and Bid documents.
    Please, tell me if you know a way to change these documents.

Maybe you are looking for

  • Superdrive is dead on MacBook Pro 17"

    MacBook Pro 17" 2.66 GHz Intel Core 2 Duo, running 10.6.8 My drive will not accept a CD or a DVD, it seems completely lifeless. I've tried rebooting with the click held dow

  • Flash player is not working whenever I switch to airport connection

    The flash player is not working in both Safari and firefox, when I switch the internet connection to the airport (WiFi), but the Ethernet connection is working fine with flash player. reinstall of Mac os x 10.6 --> not working repair disk and permiss

  • Adobe reader for Nokia 6680 doesn't work on my Nokia 6670

    I downoladed adobe reader for Nokia6680. I installed it on my Nokia6670, it prompted no error meesage, but it is not visible on my phone menu. Why, given that same OS and same screen, the reader for 6680 doesn't work on 6670?

  • HP 2311xi Monitor not working with HDMI? - Windows 8

    I have my RCA 6ft HDMI cable plugged into the back of my computer, and running to the back of my monitor. I can see my background, and the bottom tab showing files, internet, etc. But nothing else. No time, sound, or date in the bottom right corner,

  • Viewing rates on website

    I cannot view the rates on the main website for any country...I just get a blank screen. Using iMac with OS 10.8.5 Solved! Go to Solution.