Delete an entry in ICAL

When I try to delete an entry in ICAL I get this message
"Only the calendar administrator and any delegates with permission can make changesto read-only calendars. To make changes to the calendar, contact the calendar administrator".
I am the account admin…T
ried Pref-Delegation-Manage Account Access still no luck

It was once a recurring event which I deleted (I thoughtj). Actually there are two events by the same name on the same day.  One has a dark blue dot to the left of it; the other has a light blue dot to the left of it.

Similar Messages

  • Deleting duplicate entries in iCal?

    How do I delete duplicate entries in iCal (identical entries on the same date)?

    Todd,
    I suspected a more serious problem because the answer was too easy.
    Thousands of duplicate entries...Is this what happened?
    According to, Mac OS X 10.4: Stay away from the SyncServices folder: As if it were a swarm of bees, you should stay away from the SyncServices folder in Mac OS X 10.4. Removing or modifying anything in it—or in subfolders within it—may cause unexpected issues. (This folder is located in your Application Support folder, in your Library folder, in your Home folder.)
    Deleting or modifying things in the SyncServices folder may cause unexpected results such as:
    • Duplicate contacts in Address Book or appointments in iCal.
    • Data loss in Address Book or iCal.
    Important: Any lost or duplicate data could propagate to other devices and computers via iSync and .Mac sync. This means data could be lost on other computers.If that is your problem, I suspect that without a backup, duplicate entry deletion will at best be tedious, and at worst fraught with frustration. You may be better off starting from scratch.
    ;~)

  • DTM deleted old entries in iCal!

    I keep my old entries in iCal as sort of a diary.  A short while ago I started looking for something from a couple of years ago (on my computer), and discovered that everything that was over a year old was gone!.  I was not aware of the archive feature of iCal prior to that time, so just figured I could restore everything from a backup.  No go -- don't know how long the data had been missing.  So, I manually recreated what I could from my computer at work, and archived it for safekeeping.  Last evening I synced my BB Curve again, and now the data from older than 10 years is gone (my data went back to 1993).  I had purposefully done an archive just before syncing for that very reason, so I was able to restore.
    Does anybody know why this is happening?  And what to do to correct it?  I know I can archive each time I want to sync, but that seems a hassle.  Don't really care if the info is on my BB or not, but most assuredly do NOT want it deleted from my iCal.  The data is very important to me.

    in iCal preferences>advanced tab...you can select to delete (or not) events and items....see if any of these are checked.
    4.6.1.305 hybrid
    Mac Pro 2X2.8 Quad SL

  • How to rid of multiple entries in ical

    How the blazes do you you get rid of MULTIPLE entries in ical? I have read many answers and printed off a few to follow them but invariably i get to a point where I am unable to take the next step! I back track and and unable to find a fault of where I went wrong!! Then I have to ask myself WHY? Why on earth am I having to go to such extreme lengths to get rid of the unwanted entries?
    Come on now Apple it is you who should be providing the simple logic answer to this?
    I decided to give up? just ignore the other entries it easier than going frantic trying (and anyway I am frightened I may throw the macbook in my temper)
    bye bye
    bob

    Hi pvonk
    I do know how to delete the odd file but I have things like bank holidays entered 7 or 8 times and Trooping the colour 15 entres Queens jubilee 14 times.
    I just want to stop the thing from doing that and if there is a way my question is why do I have to do it? surely apple should fix it or whatever
    peardrop

  • How to delete the entries in the given field box

    Hi Every One,
    How can I delete the entries which I have given in example SE37 box.
    When I press Backspace button the entries which I have given will appear so I want to delete these entries.
    With Regards,
    Venkat

    Hi,
    Goto ==> Customize Local Layout (Alt + F12) , then Options ====> LocalData=======> Clear History
    This process should clear your history.

  • Delete all entries from the following tables - Follow-up Activities (oracle)

    Hello,
    I performed a homogeneous system copy of our development BW system with the database (oracle 11.2.0.3) from the BW production system!
    I already start the oracle database and the SAP system in the target system/server (development BW system) and I´m doing some follow-up activities. One of this activities is (at the system copy guide 6.2.3.2 Activities at Database Level) is to delete all entries from the following tables:
    DBSTATHORA, DBSTAIHORA, DBSTATIORA, DBSTATTORA
    I tried to delete them using SQL Plus:
    sqlplus /nolog
    SQL> connect /as sysdba
    SQL> delete from DBSTATTORA;
    delete from DBSTATTORA
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ... and it show me that error message.
    This is strange because when I go to transaction SE14 and check the DBSTATTORA I see that table exist and contain a lot of entries!
    Why this is happened in SQL Plus!? I´m running the correct SQL statement for doing this type of task or not?
    How can I delete the entries of that tables? Can I do that using the transaction SE14?
    Can you help me please?
    Thank you,
    samid raif

    Hello
    sqlplus /nolog
    SQL> connect /as sysdba
    SQL> delete from DBSTATTORA;
    delete from DBSTATTORA
    ERROR at line 1:
    ORA-00942: table or view does not exist
    It doesn't surprise me as you are not mentioning the schema name here. Instead it should be
    delete from SAPSR3.DBSTATTORA;
    Assuming the schema owner is SAPSR3. if the owner is different then replace that with the correct one.
    Regards
    RB

  • To delete multiple entries in table control in module pool

    Hi,
    Please help me out to know , <b>how to delete multiple entries from table control</b> when multiple lines in table control are selected.
    Regards,
    Irfan Hussain

    hai,
        you can do it inthis way.
    in the PAI event.
    loop at <table control name>
      module del_itab.
    endloop.
    in the nodule,write the folowing code.
    if <tablecontrol>-fieldname = 'X'.
    delete <tablecontrol-itab>
    endif.
    cheers

  • How to delete the entries in internal table

    Hi Experts,
    I have 2 internal tables ,
    if i find any same entries of 2 internal tables,  i have to delete that entries in first internal table.
    Regards,
    Srinivasu

    hi check this..
    report .
    data:begin of itab occurs 0,
         f1 type c ,
         f2 type i,
         end of itab .
    data:begin of itab1 occurs 0,
         f1 type c ,
         end of itab1 .
         itab-f1 = 'A'.
         itab-f2 = 12.
         append itab .
         itab-f1 = 'b'.
         itab-f2 = 12.
         append itab .
         itab-f1 = 'c'.
         itab-f2 = 12.
         append itab .
         itab1-f1 = 'A'.
         append itab1 .
    loop at itab1 .
    read table itab with key f1 = itab1-f1 .
    if sy-subrc  = 0.
    delete itab where  f1 = itab1-f1 .
    endif .
    endloop.
    loop at itab.
    write:/ itab-f1,itab-f2.
    endloop.

  • How to delete the entries from NAST table

    Hi,
    Please help me out by providing any function module that delete's the entries from hte NAST table.
    Regards,
    Kiran.L

    REPORT ZSCD_TEST13.
    delete from nast where VSTAT = '1'.
    =====
    If you see the FM : NAST_DELETE_OBJECT, its only useful when NACHA = 7 (i.e. message transmission medium = Simple Mail)
    For others its not useful.
    We had similar issue few days back and after long RnD, we straightaway deleted the entries using the Zprogram.
    regards,
    Edited by: Pranu Pranu on Aug 19, 2008 1:42 PM

  • How to delete the entries from the transport request

    i need to delete the entries programatically from the transport request for all the entries which is exists in the package for the tables e070 and e071.

    Hi,
    I think you need to have authorization for that thru auth group SA.
    One more thing is where ever its created like source client only you can do if u have authorization.
    Regds
    Sivaparvathi
    Please reward points if helpful...

  • How to delete duplicate entries in table for the object DNL_CUST_BASIS2

    Hi All,
    I am trying to download the object DNL_CUST_BASIS2.
    In the SMQ2 the status is SYSFAIL.
    I checked in the ST22 for dumps.It says about the error while accessing the table T006.
    While analysing this,i found some duplicate entries in the related tables of this object.
    Can somebody help me how to delete these duplicate entries?
    Thanks,
    Senthil.

    Delete them directly from the table using se16:
    select the entries in the classic view (not ALV or grid view).
    activate the debugger.
    press the view button. --> you'll enter in the debugger
    press F7
    locate the sy-ucomm variable & change it to "DELE".
    press F8
    delete the entries.
    Trick-shots
    but it works!
    Michael.

  • Why I can't delete an item in iCal on iPad 2?

    Why I can't delete an item in iCal on iPad 2? The user manual says: click on the item, choose 'Edit' or something like that and then 'Delete'.
    But clicking on the item only shows the details and not any window for Editing the item.
    I wanted to delete an item in a calendar that is synchronized via Google.
    Thanks for help!

    If you are In the "Day"view in the calendar app, tap on the event  and a window opens up with a red "Delete Event" button at the bottom of the window. Tap that button and then another "Delete Event" button pops up. Tap that to delete.
    In the week view, tap the event and then a window pops up with "Edit" in it - it is in the upper right corner of that window - tap edit, and then repeat the process described above.
    I do not use the Google calendar and maybe the way you have that set up will not allow you to do this directly on the Calendar app on the iPad.

  • How to delete christian holidays from ical

    How to I delete Christian holidays from Ical using my Ipad. Not one at a time, the entire Christian Holidays calendar?

    Launch calendar app
    Click Calendars at bottom center
    Deselect the Calendars you no longer wish to see
    Select Done
    To permanently Delete the subscription to a calendar
    Go to ical on your Computer
    Click Calendars on top left
    Right Click the Calendar subscription you wish to remove
    Select Delete

  • How to delete duplicate entries in address book

    Is there an easy way to delete duplicate entries in Address Book?

    I have an iPhone where I create new contact details and a MB Air running OX X 10.7.3
    In Address Book I see duplicate entries across the whole book. The other day I was traveling without my MB and needed to urgently reach someone who's number I knew was in my iPhone contact list for sure but searched and search and couldn't find it.
    Turns out that when I had been going through the Adress Book on the MB Air trying to eliminate some of the duplicates I had chosed --without even knowing it or realzing it-- the card that I guess sync with my iPhone. It was gone. Sure enough, when I got back and looked it up on the MB Air it was still there not syncing to my iPhone.
    I have used Address Book / Card / Look for Duplicates ...
    I have also followed the Help suggesting and pressed Control / select to highlight two duplicate cards and even though the First / Last / Company / phone numbers / etc. are all the same I get the message: "The cards could not be merged because they came from different accounts."
    I have checked with guys from the office who have the exact same problem with no idea how to solve the problem.
    Is it that in order to use Address Book on both an iPhone and an OS X machine you've just got to be smarter, more sophisticated, more IT oriented?
    Seems like a pretty easy thing not to be struggling with.
    I should mention that I was a Mobile Me subscriber and now use iCloud which I'm sure has something to do with all of this.
    But it seems pretty basic to me. If I have an Address Book it should synchronize between OX X and IOS.

  • How to delete duplicate entries in match code

    I want to delete duplicate entries in match code.

    If you go down the search exit route, using function module F4_IF_SHLP_EXAMPLE or function module F4_IF_SHLP_EXIT as a template you want it where callcontrol-step = 'DISP'.  You would sort the table: SORT RECORD_TAB BY STRING and then delete adjacent duplicates. If this does not wok because of the fields you have in your search help, you will need to select the data into another internal table and match the relevant entries from your internal table  with the relevant position in field STRING of RECORD_TAB.  The positions in STRING will be as per the order of the parameters  you have defined in the search help.
    Hope this helps.
    Regards
    Larissa

Maybe you are looking for

  • Photoshop Pen Pressure Issues

    I'm not actually sure that this is the correct place to post this. I don't have a question per se, as I've fixed the problem, but I would like to address an issue with Photoshop and my pen tablet and hopefully help others who might have the same prob

  • Return item (RETPO) as a key field in condition table

    Hi, I would like to know how we can utilize return item indicator as one of the key fields in the PO pricing condition table. [Requirement] Condition record Use Retrun item as a key e.g.) Table A999: POrg | Vendor | Return item | condition rate #1: 1

  • Query on selection screen

    Hi all, Please give me the solutions to the following in selection screen: 1. In selection-screen there is one select-options and one parameter. Now,if the select-opotions range is given 30 to 40 then, the parameter should be populated with 'A'. If t

  • Data storage and aggregation levels

    Hi, I want to know, in facts and dimensions, where is data stored? Is it on multiple levels of aggregation? Or it does not depend from aggregation and it is stored at the lowest level? Thank you.

  • Oo abap Display ALV with all selected lines

    I will have to display an ALV report but all the records have to be selected while displaying. I have to do this using OO ABAP only. Thanks Kiran