Invitation Error: Only the Organizer can change this event

After doing a clean install of Snow Leopard on my MacBook Pro, I was getting the following error when trying to edit some iCal events:
Invitation Error: Only the Organizer can change this event
The iCal events that I couldn't edit had all been ones where I had sent invitations to someone else. When I double clicked them to attempt to edit them, I received a popup that would allow me to accept/decline the event, but not edit it. I noticed in the popup that it had the email address of the original invitee plus my own email address. I'm sure that my own email address wasn't there before.
I took a look at "My Card" in address book and it only had my name and no email addresses.
After the install I had synced iCal and Address Book with MobileMe. The sync said there was a conflict with my Address Book entry and I accepted the one from MobileMe, thinking I hadn't put anything in the one on my laptop yet anyway. I ended up with the original of my Address book entry, but not marked as "my card" and an entry with just my name marked as "my card".
When I merged the two cards and made sure the resulting card was marked as my card, I could then edit the iCal events. I think it was the fact that "my card" now had my MobileMe / .Mac email address in it that allowed me to edit the iCal events.
So if you're having this problem editing events, check your My Card in Address Book and make sure it has the appropriate email addresses in it.
- David
PS - There was an earlier post with this topic, but it didn't mention this solution. I would've replied to that post but it had been archived and replies were not allowed.

I have found a way around this. If you drag the event to your desktop, it will create an .ics file. If you open this file in TextEdit, you can delete the line that begins with ORGANIZER:. Save the file and bring it back into iCal. iCal will now assume you are the organizer, allowing you to edit. You may also want to delete the other attendees in TextEdit, as iCal will also want to send updates if you make changes to the file (because it thinks you're the organizer making changes to your own calendar event).
This isn't an ideal solution, but it lets you make the edits. Hopefully Apple will change this in a future Leopard update or in Snow Leopard.

Similar Messages

  • I'm trying to transfer a quicktime file, when I drop the file in my hard drive I get the following error message "The operation can be completed because an unexpected error occured (error code 0). It only happens with this particular drive.

    I'm trying to transfer a quicktime file, when I drop the file in my hard drive I get the following error message "The operation can be completed because an unexpected error occured (error code 0). It only happens with this particular drive.

    Run Disk Utility and try to verify/repair the drive to see if it reports and fixes anything.

  • How I can change this query, so I can display the name and scores in one r

    How I can change this query, so I can add the ID from the table SPRIDEN
    as of now is giving me what I want:
    1,543     A05     24     A01     24     BAC     24     BAE     24     A02     20     BAM     20in one line but I would like to add the id and name that are stored in the table SPRIDEN
    SELECT sortest_pidm,
           max(decode(rn,1,sortest_tesc_code)) tesc_code1,
           max(decode(rn,1,score)) score1,
           max(decode(rn,2,sortest_tesc_code)) tesc_code2,
           max(decode(rn,2,score)) score2,
           max(decode(rn,3,sortest_tesc_code)) tesc_code3,
           max(decode(rn,3,score))  score3,
           max(decode(rn,4,sortest_tesc_code)) tesc_code4,
           max(decode(rn,4,score))  score4,
           max(decode(rn,5,sortest_tesc_code)) tesc_code5,
           max(decode(rn,5,score))  score5,
           max(decode(rn,6,sortest_tesc_code)) tesc_code6,
           max(decode(rn,6,score))  score6        
      FROM (select sortest_pidm,
                   sortest_tesc_code,
                   score,
                  row_number() over (partition by sortest_pidm order by score desc) rn
              FROM (select sortest_pidm,
                           sortest_tesc_code,
                           max(sortest_test_score) score
                      from sortest,SPRIDEN
                      where
                      SPRIDEN_pidm =SORTEST_PIDM
                    AND   sortest_tesc_code in ('A01','BAE','A02','BAM','A05','BAC')
                     and  sortest_pidm is not null 
                    GROUP BY sortest_pidm, sortest_tesc_code))
                    GROUP BY sortest_pidm;
                   

    Hi,
    That depends on whether spriden_pidm is unique, and on what you want for results.
    Whenever you have a problem, post a little sample data (CREATE TABLE and INSERT statements, relevamnt columns only) for all tables, and the results you want from that data.
    If you can illustrate your problem using commonly available tables (such as those in the scott or hr schemas) then you don't have to post any sample data; just post the results you want.
    Either way, explain how you get those results from that data.
    Always say which version of Oracle you're using.
    It looks like you're doing something similiar to the following.
    Using the emp and dept tables in the scott schema, produce one row of output per department showing the highest salary in each job, for a given set of jobs:
    DEPTNO DNAME          LOC           JOB_1   SAL_1 JOB_2   SAL_2 JOB_3   SAL_3
        20 RESEARCH       DALLAS        ANALYST  3000 MANAGER  2975 CLERK    1100
        10 ACCOUNTING     NEW YORK      MANAGER  2450 CLERK    1300
        30 SALES          CHICAGO       MANAGER  2850 CLERK     950On each row, the jobs are listed in order by the highest salary.
    This seems to be analagous to what you're doing. The roles played by sortest_pidm, sortest_tesc_code and sortest_test_score in your sortest table are played by deptno, job and sal in the emp table. The roles played by spriden_pidm, id and name in your spriden table are played by deptno, dname and loc in the dept table.
    It sounds like you already have something like the query below, that produces the correct output, except that it does not include the dname and loc columns from the dept table.
    SELECT    deptno
    ,       MAX (DECODE (rn, 1, job))     AS job_1
    ,       MAX (DECODE (rn, 1, max_sal))     AS sal_1
    ,       MAX (DECODE (rn, 2, job))     AS job_2
    ,       MAX (DECODE (rn, 2, max_sal))     AS sal_2
    ,       MAX (DECODE (rn, 3, job))     AS job_3
    ,       MAX (DECODE (rn, 3, max_sal))     AS sal_3
    FROM       (
               SELECT    deptno
               ,          job
               ,          max_sal
               ,          ROW_NUMBER () OVER ( PARTITION BY  deptno
                                              ORDER BY          max_sal     DESC
                                )         AS rn
               FROM     (
                             SELECT    e.deptno
                       ,           e.job
                       ,           MAX (e.sal)     AS max_sal
                       FROM      scott.emp        e
                       ,           scott.dept   d
                       WHERE     e.deptno        = d.deptno
                       AND           e.job        IN ('ANALYST', 'CLERK', 'MANAGER')
                       GROUP BY  e.deptno
                       ,           e.job
    GROUP BY  deptno
    ;Since dept.deptno is unique, there will only be one dname and one loc for each deptno, so we can change the query by replacing "deptno" with "deptno, dname, loc" throughout the query (except in the join condition, of course):
    SELECT    deptno, dname, loc                    -- Changed
    ,       MAX (DECODE (rn, 1, job))     AS job_1
    ,       MAX (DECODE (rn, 1, max_sal))     AS sal_1
    ,       MAX (DECODE (rn, 2, job))     AS job_2
    ,       MAX (DECODE (rn, 2, max_sal))     AS sal_2
    ,       MAX (DECODE (rn, 3, job))     AS job_3
    ,       MAX (DECODE (rn, 3, max_sal))     AS sal_3
    FROM       (
               SELECT    deptno, dname, loc          -- Changed
               ,          job
               ,          max_sal
               ,          ROW_NUMBER () OVER ( PARTITION BY  deptno      -- , dname, loc     -- Changed
                                              ORDER BY          max_sal      DESC
                                )         AS rn
               FROM     (
                             SELECT    e.deptno, d.dname, d.loc                    -- Changed
                       ,           e.job
                       ,           MAX (e.sal)     AS max_sal
                       FROM      scott.emp        e
                       ,           scott.dept   d
                       WHERE     e.deptno        = d.deptno
                       AND           e.job        IN ('ANALYST', 'CLERK', 'MANAGER')
                       GROUP BY  e.deptno, d.dname, d.loc                    -- Changed
                       ,           e.job
    GROUP BY  deptno, dname, loc                    -- Changed
    ;Actually, you can keep using just deptno in the analytic PARTITION BY clause. It might be a little more efficient to just use deptno, like I did above, but it won't change the results if you use all 3, if there is only 1 danme and 1 loc per deptno.
    By the way, you don't need so many sub-queries. You're using the inner sub-query to compute the MAX, and the outer sub-query to compute rn. Analytic functions are computed after aggregate fucntions, so you can do both in the same sub-query like this:
    SELECT    deptno, dname, loc
    ,       MAX (DECODE (rn, 1, job))     AS job_1
    ,       MAX (DECODE (rn, 1, max_sal))     AS sal_1
    ,       MAX (DECODE (rn, 2, job))     AS job_2
    ,       MAX (DECODE (rn, 2, max_sal))     AS sal_2
    ,       MAX (DECODE (rn, 3, job))     AS job_3
    ,       MAX (DECODE (rn, 3, max_sal))     AS sal_3
    FROM       (
                   SELECT    e.deptno, d.dname, d.loc
              ,       e.job
              ,       MAX (e.sal)     AS max_sal
              ,       ROW_NUMBER () OVER ( PARTITION BY  e.deptno
                                           ORDER BY       MAX (sal)     DESC
                                          )       AS rn
              FROM      scott.emp    e
              ,       scott.dept   d
              WHERE     e.deptno        = d.deptno
              AND       e.job                IN ('ANALYST', 'CLERK', 'MANAGER')
                  GROUP BY  e.deptno, d.dname, d.loc
              ,       e.job
    GROUP BY  deptno, dname, loc
    ;This will work in Oracle 8.1 and up. In Oracle 11, however, it's better to use the SELECT ... PIVOT feature.

  • Can't burn discs. Error message: The disc can't be burned because the device failed to calibrate the laser level for this media     can't be burned because the device

    Cannot burn discs. Error message: "The disc can't be burned because the device failed to calibrate the laser power level for this media". Then the blank disc is ejected.

    Two main possible causes:
    1. Poor media. Verbatim DVD-R work best, burned at only 2x or 4x.
    2. Dirty lens. Try cleaning the superdrive with a proprietary CD/DVD lens cleaner that uses tiny brushes.

  • I'm trying to download office 365 small business package, and every time I try the website it says there is a runtime service error in the '/' application. Is this my mac or is it the website, and how can I fix it?

    I'm trying to download office 365 small business package, and every time I try the website it says there is a runtime service error in the '/' application. Is this my mac or is it the website, and how can I fix it?

    If a phone is sold from one friend to another and wants to use it on a different carrier the friend can contact the carrier it was sold by to request it unlocked.  I know AT&T, Verizon, and Sprint will give you the steps to unlock it as long as the original contract it was bought under has been completed.  eBay/Craigslist is really not the best place to try to get "unlocked phones" from, if it turns out the phone isn't unlocked then I'm really sorry you got stuck with that one and as stevejobsfan said above I would report them immediately and see if you can recover your money.  I sell phones for a living and this happens a lot

  • I have an ipad 2 the game center it know is telling me that game center is currently disabled,you can change this in the settings menu. I do not know were in the settings to look, to fix the settings

    i am getting a message on my ipad2,  i was playing frogger pinball and and the front says  story, challenge, add and store next to store it has a leaf with 3 people icons i clicked on that, and i am getting a message that says i hit game center on the bottom the message reads game center is currently disabled. you can change this in the settings menu I have gone to the settings menu but I am not clear as to were to fix the program.

    i got your response and i went to the restrictions, and I have gone to game center on the bottom it says multiplayer game on adding friends on, i have tried to turn it off and it wont let me, first shoul i try to shut it off and 2nd do you know why it might not be letting me do so it i should be

  • HT1349 I am unable to install iTunes. I'm receiving an error message: "The program can't start because MSVCR80.dll is missing from your computer. Try reinstalling the program to fix this problem." I've unistalled and attempted to reinstall several times.

    I am unable to install iTunes. I'm receiving an error message: "The program can't start because MSVCR80.dll is missing from your computer. Try reinstalling the program to fix this problem." I've unistalled and attempted to reinstall several times.  I keep getting the error message to reinstall to fix the problem.

    See if this post from turingtest2 fixes it : https://discussions.apple.com/message/24620553#24620553

  • I ran an iTunes update.  It failed with the message  System Error.  The program can't start because MSVCR80.DLL is missing from your computer.  Try reinstalling the program to fix this problem.   I tried reinstalling but get the same message.

    I ran an iTunes update.  It failed with the message  "System Error.  The program can't start because MSVCR80.DLL is missing from your computer.  Try reinstalling the program to fix this problem."   I tried reinstalling but get the same message.  I looked in my Recycle Bin for that file name but there is none there.  Is this a new file that iTunes wants?

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99683)

  • Can't download itunes update.  Keep getting this error message:  THe program can't start because MSVCR80.dll is missing from your computer.  Try reinstalling the program to fix this problem

    Can't download itunes update.  Keep getting this error message:  THe program can't start because MSVCR80.dll is missing from your computer.  Try reinstalling the program to fix this problem

    I researched the advice on the link provided by b noir as well as very similar advice from apple support: http://support.apple.com/kb/TS5376. It worked for me (for now).
    Some things of note:
    I did all of the things requested by the link I provided
    My computer WOULD NOT uninstall Apple Mobile Device Support. I had to manually remove the folder (also as instructed by the url)
    I also uninstalled MobileMe. Was a little different than removing the other apps. Follow instructs provided here: http://support.apple.com/kb/HT2992
    I did not uninstall iCloud
    I have to admit it was a bit scary removing all those things. Is important to note that when re-installing Apple, follow steps to do so as Administrator (the right-click thingy and whatnot).
    Hope this helps!

  • I get an error stating the program can't start because FileGDBAPI.dll is missing from my computer. How do I fix this?

    I get an error stating the program can't start because FileGDBAPI.dll is missing from my computer. How do I fix this?

    Hi bethh31640887,
    As already asked by Sara, can you let us know the following information:
    1. What application are you trying to launch? Acrobat or Reader and which version?
    2. What is the OS that you are using?
    3. Can you try launching the application after repairing the product once?
    Thanks,
    Shitiz

  • Wrapper.createfile failed with error 3: The system can't find this path

    Hi,
    I have a problem of installing Java on my computer. I saw the error which is "wrapper.createfile failed with error 3: The system can't find this path specified."
    I searched a lot of sites to solve it, but i havent found. How do I solve it ?
    Thanks...

    Hi,
    Error code 0x80070003 = "The system cannot find the path specified."
    Have you checked the log file smsAdminUI.log? Maybe it can give us some clues.
    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.

  • I was wrong when installing ADE because I chose the option without Adobe ID, I can change this?

    I was wrong when installing ADE because I chose the option without Adobe ID, I can change this?

    All apps are forever tied to the Apple ID that bought them. To stop your id from popping up, you need to delete the apps on his phone, and then repurchase them under his account.

  • I keep getting the error message "The operation can't be completed because you don't have permission to access some of the items."

    When I try and move an application to my application folder from the installer and when I try to empty the trash, I get the error message, "The operation can’t be completed because you don’t have permission to access some of the items."  This has only been an issue since I upgraded to Lion.  I'm using a July '07 white Macbook 2.16 Intel Core 2 Duo.  In my trash I only have an older version of a software that I updated (Divy).  The software I'm trying to install is Angry Birds Rio.

    Always use the same websites you are having problems with so you can monitor the changes.
    Try the reset for Safari:
    And for Firefox:
    http://www.ehow.com/how_6874158_keyboard-working-certain-websites-firefox.html
    Try logging in to the guest account as well to see if you have the same problems there, it might be a logging in issue.

  • Cannot backup my files / copy my files and folders due to error message " The operation can't be completed because an item with the name ".DS_Store" already exists. "

    Hi Apple community!
    I have a [rather worrying] problem.
    When I try to copy all my files from my documents on my mac [or the entire documents folder] into an external drive, I get this error message
    " The operation can’t be completed because an item with the name “.DS_Store” already exists. "
    I am not given an option to skip this file or anything else.
    But I simply cannot complete the operation!
    I have tried deleting a few of the .ds_store files, [both in the original and in the destinations]
    but no success.
    The same thing keeps happening.
    At first, this was just happening when I was trying to backup to my dropbox folder [the one on my mac's harddrive, which gets synced to the cloud],
    but then I tried to back up my documents to my external hard drive, and I realized it is giving me the same error message.
    So effectively, it seems I cannot backup my files anywhere!
    Any help or advice would be greatly appreciated.
    Thank you.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Hpqdirec.exe – System error. The program can't start because ATL90.DLL is missing from your compute

    Hello,
    The following has only transpired recently. It concerns Windows 7 and my C6380 All-In-One.
    It appears to be a registry issue. I am experienced and have tried even more than that listed below.
    On launching the "HP Solution Centre", I receive the following error message:-
    “Hpqdirec.exe – System error.  
    The program can’t start because ATL90.DLL is missing from your computer. Try reinstalling the program to fix this problem."
    Are you able to advise on how I can resolve this issue. Clearly, I want to avoid a complete clean install of my PC.
     What I have tried
    - Complete Install, Reboot, Install of the HP Software
    - Restore points
    - Running virus scanners
    - Windows "Start-up Repair"
    , - Running RegZooka

    I can think of a couple of possibilities here.
    One, if this was an upgrade from XP or Vista, then it is possible that the file is just not there in the operating system. Or if some other uninstallation removed it unknowingly. Not likely but possible.
    More likely, some sort of security software (firewall/antivirus/malware) blocked part of the installation. This could result in missing HP items and/or missing linkage to operating system necessities. You might try reinstalling with the security software disabled or off completely. At the minimum, with options to allow the HP installation full access during the install.
    Hope that helps.
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

Maybe you are looking for

  • Differenct customer PO split inito different delivery note

    hi, if i have several SO with different customer PO which I input in PO field in SO. how can i not allow combine same DN with this criteria. tha nks

  • Brand new iPod Shuffle is not recognized by iTunes and Win XP Laptop

    I have iPod nano and iTunes 7. Just got a brand new iPod Shuffle (2nd Gen). Neither iTunes nor my laptom recognize the iPod Shuffle - it is not even getting charged. I tried all the tips from the offical support, but nothing works. Should I just thro

  • Different shipping address for different PO line items

    Dear all          Kindly let me know if any option is available for getting differenent delivery address for line item in one single PO. regards M.Chandra mohan

  • How do I link an iWeb site to a Yahoo store?

    Hi all, I designed an iWeb site for a friend, she is hosted at Yahoo Small Business. She also wanted to use Yahoo ecommerce does anyone know how to link an iWeb site to a Yahoo store? Yahoo uses store tags which they tell me can't be used in iWeb I w

  • Evaluate function problem

    I have a problem with EVALUATE function in OBIEE. I passed two parameters. Number is numeric and Name is varchar. Evaluate('DWH.PKG_ITEM_FUNCTION.PS_LAW(%1,%2)', "Book"."Item"."Number", "Book"."Item"."Name" ) I get the following error: [nQSError: 220