Remove cancelled appointment

I have 2 calendars I sync with my iPhone, Exchange 2010 and Google Calendar. Whenever I receive a meeting invitation on my google calendar I can't edit the appointment at all, in fact the edit button is not there. The meeting shows up surrounded by a grey dotted line as well. If the meeting is cancelled I receive another email from the organizer that contains the meeting as an attachment. It doesn't show cancelled or give me the option to delete it anywhere. Sometimes the meeting will be removed from the calendar hours later, but most of the time the meeting will be there weeks later.
The meetings on the exchange calendar are either removed or show up as cancelled on my iphone. I also have the option to delete the meeting off the calendar.
In other forums I see the suggested workaround is to turn off the sync for that calendar which would remove all entries, then turn sync back on. This works but I have a hard time accepting this as a solution. Does anyone know what causes this?
Thanks

Hello,
This is possible without using UDF. See mapping below:
For ROW
ZPOSSZIPNO -> removeContext -> sortByKey: ascending ->  formatByExample -> sum -> greater: 0 -> ifWithoutElse (output of sum) -> removeContext -> ROW
   AMOUNT -> removeContext -> /                                / 
ZPOSSZIPNO -> removeContext -> sort: ascending -> splitByValue: valueChanged
For ZPOSSZIPNO
ZPOSSZIPNO -> removeContext -> sortByKey: ascending ->  formatByExample -> sum -> greater: 0 ------> ifWithoutElse -> removeContext -> SplitByValue:eachValue -> ZPOSSZIPNO  
   AMOUNT -> removeContext -> /                                /                                            /
ZPOSSZIPNO -> removeContext -> sort: ascending -> splitByValue: valueChanged                               /
ZPOSSZIPNO -> removeContext -> sort: ascending -> splitByValue: valueChanged - > collapseContext -> SplitByValue: eachValue
For AMOUNT
ZPOSSZIPNO -> removeContext -> sortByKey: ascending ->  formatByExample -> sum -> greater: 0 -> ifWithoutElse (output of sum) -> removeContext -> SplitByValue:eachValue -> AMOUNT
   AMOUNT -> removeContext -> /                                / 
ZPOSSZIPNO -> removeContext -> sort: ascending -> splitByValue: valueChanged
Hope this helps,
Mark
Edited by: Mark Dihiansan on Jun 8, 2011 7:19 AM

Similar Messages

  • Cancelling appointment problems

    Hi:
    I have written a calendar program and I have added two appointments. One appointment I have decided to cancel and I would like to remove from my list of appointments.
    I written a removeApp method to remove the appointment but it does not work.(The code compiles without error and there are no runntime errors.)
    Can someone help me solve this problem?
    Thanks.
    Describes a calendar for a set of appointments.
    @version 1.0
    import java.util.Vector;
    import java.util.*;
    public class CalendarTest
    {  public static void main(String[] args)
          Calendar markCalendar = new Calendar("Mark");
          markCalendar.addApp(new Appointment("June 1","3pm","4pm", "dentist"));
           markCalendar.addApp(new Appointment("June 2","3pm","4pm", "doctor"));
          Appointment toFind = new Appointment("June 1","3pm","4pm", "dentist");
          markCalendar.removeApp(toFind);   
          markCalendar.print();
    Describes a calendar for a set of appointments.
    class Calendar
       Constructs a calendar for the person named.
       public Calendar(String aName)
       {  name = aName;
          appointments = new Vector();
       Adds an appointment to this Calendar.
       @param anApp The appointment to add.
       public void addApp(Appointment anApp)
          appointments.add(anApp);
       Removes an appointment from this Calendar.
       @param anApp The appointment to be removed.
       public void removeApp(Appointment toFind)
          for ( int i = 0; i < appointments.size(); i++)
             if (((Appointment)appointments.get(i)).equals(toFind))
                 appointments.remove(i);// remove it;
       Prints the Calendar.
       public void print()
       {  System.out.println(name + "               C A L E N D A R");
          System.out.println();
           System.out.println("Date   Starttime    EndTime   Appointment");
          for (int i = 0; i < appointments.size(); i++)
          {  Appointment nextApp =(Appointment) appointments.get(i);
             nextApp.print();
       private Vector appointments;
       private String name;
       private Appointment theAppointment;
    Describes an appointment.
    class Appointment
       public Appointment(String aDate,String aStarttime,String aEndtime, String aApp)
       {  date = aDate;
          starttime = aStarttime;
           endtime = aEndtime;  
          app = aApp;
       Prints the Date, Starttime, Endtime and a description of the
       appointment.
       public void print()  
       {  System.out.println();
          System.out.println(date + "   " + starttime + "          " + endtime
              + "       " + app );
          System.out.println();
       private String date;
       private String starttime;
       private String endtime;
       private String app;

    Warning: Long winded answer
    well, here's your code:
    public void removeApp(Appointment toFind)
        for ( int i = 0; i < appointments.size(); i++)
            if (((Appointment)appointments.get(i)).equals(toFind))
                appointments.remove(i);// remove it;
    }I would throw in some System.out.println statements in there to let me know what Appointment I was currently looking at and whether that "if" statement ever went true, though it probably never does (I doubt there is a problem with the remove call). So, assuming that your problem is that the if statement doesn't fire when you think it should, then that means your call to the equals method isn't working out. You don't override the equals method of the Object class, so you are calling it there - here is the javadoc comments for that method:
    The equals method for class Object implements the most discriminating possible equivalence relation on objects; that is, for any reference values x and y, this method returns true if and only if x and y refer to the same object (x==y has the value true).
    So, it's no surprise that that isn't working out for you. It will only return true if the reference passed in points to the same chunk of memory that the reference in the List does.
    So, you need to provide an equals method in your Appointment class that returns true if two appointments are equal. You need to provide public accessor method for your private properties of your Appointment class, so that you can provide a method like (note that you are in a better position to know what the definition of "equals" is with respect to your Appointment class):
    public boolean equals(Object app) {
        if (!app.getDate().equals(this.getDate())) {
            return false;
        if (!app.getStartTime().equals(this.getStartTime()) {
            return false;
        // you get the idea
        // If you make it through all your ifs, and all is equal -
        return true;
    }You might want to tweak that, depending on your idea of equals.
    Lee

  • Removing cancel button

    For some time now I try to customize UIImagePicker and ABPeoplePicker. I want to remove 'Cancel' buttons that appear next to the title on the navigation bar of both controllers. Any help with this issue is greatly appreciated, as I ran out of ideas and am fed up with lack of documentation how to customize the controllers

    I solved this, all you have to do is to implement delegate method -willShowViewController and for any bar button item you want to disappear you need to make it's frame to CGRectMake(0,0,0,0).

  • Officejet Pro 8600 - Can't remove canceled job from print queue

    Hi there
    I canceled a print job from the print queue, but it refuses to budge! Everytime I try to remove it, I get this message:
    I can print other documents, but it's very irritating having this here all the time (and a big red blob on my dock icon announcing a phantom print job).
    Can anyone help me rid myself of this spectre of print purgatory?
    Cheers!

    Try downloading and running the HP Print and Scan doctor. This software is able to remove phantom print jobs for you automatically. The program can be downloaded from here.
    As well, for Windows based computers, restarting the computer can also help with this issue oftentimes. Hope this helps.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------
    I am not an HP employee.

  • To remove Cancel and Keep workitem from User desicion

    Hi,
      I am having a requirement that I need to remove the extra system added button of <b>cancel and Keep workitem</b> in the User decision activity. I don't want that to be shown to the user for proccessing , I shoud display only Approve and Reject option. But the third one is getting added by iteself.
    Can any one please guide me in removing this option from the workitem.
    Advance thanks .
    Regards,
    Sabari Prabhu.

    Hi,
    I'm not on a SAP system right now, so i'm not sure if this will help (or is true for that matter).
    I think in the tabs of the step definition, you can alter the code used for the user decision.
    Or, if this is not possible, you can also create a custom ud step and a custom BO of the method used in decisions and change the method of the decision, so that these don't show up.
    I do not think that this is an easy solution.
    May I ask, what the functional requirement, or even the business spec is, for this? I think the cancel button is very handy, when users accidentally picked up a work item and is SAP standard behaviour.
    Kind regards, Rob Dielemans

  • On a canceled appointment can I configure so that it shows with a line through, rather than disappearing, when I accept the change?

    When my assistant deletes in her outlook, it comes as a notification that the appointment is canceled, with the option of accepting the update.  If I don't accept the update, there is a line through the appointment, which I like.  If I do, the appointment disappears.  I would like to still have canceled appointmnents but with lines through.

    Never mind. I figured it out what was causing the split of each disc into a different audiobook: The title of each track had the separate disc numbers and that made it appear as if it was a different book. Once I changed the title of each track to reflect the book's title without the disc number, the different tracks all merged into one audiobook in the audiobook section of iTunes.

  • How do I remove/cancel a download?

    I need to know how I cancel or remove the download OS X Mavericks on my 13 inch Mac Book Pro?

    If you downloaded and installed an Application from the App Store, you can drag it to the trash then empty the trash.
    If you mean the Operating System Mac OS X 10.9 (Mavericks) then I think you can run the installer for a previous version (if you have the installer).  I have not tried this as I do not plan to go back.

  • ADF Input Date - To remove cancel button while clicking glyph

    Hi Guys,
    In the Input date if we use the <af:ConvertDateTime> then in the popup we will have time zone,OK and Cancel Button. In this i want to remove the Cancel Button. Why i want to remove is in the popup the Close button is already fullfilling the functionality. Hope this should be done using CSS.
    Kindly let me know how to do it?

    Hi.,
    I hope this url will help u..
    http://docs.oracle.com/cd/E23549_01/apirefs.1111/e12419/tagdoc/af_inputDate.html
    Thanks,
    parame

  • Removing 'Cancel and Remain Item in Inbox' Button from Workflow

    Hi,
    When I create an option in workflow by default we get one option 'Cancel and Remain Item in Inbox' I think this option appears in ECC 6.0 & above. I want to remove this button from the workitem which is automatically appearing below my approve option.
    Can anyone tell me how to remove this option.
    Thanks & Regards.
    Shweta

    Hi,
    There is no standard way for hiding this option in the decision step (if I understand correctly what you mean). This has been "always" there - even before ECC 6. Basically this option is actually quite useful, if the user does not want to complete the task at the moment, and keep the work item in his inbox to return to it later.
    If you really need to hide it, it will probably mean that you need to make your own version of the decision task (and the method). You can check/debug the code of the method, and see where you could hide the button. BUT if you just need to hide this button for one certain task, it might much easier to just create your own simple screen and use that instead of the standard decision "screen".
    Regards,
    Karri
    PS. Try to search this forum for some hints. I remember seen this same topic discussed quite a few times, and there has been quite clever solutions.

  • Remove cancel release button

    Hi, is it possible to remove the cancel release button in the PO Release Tab? We would like to restrict the PO from being edited.  We already set it in the system messages, however, the users tend to ask the releasers to Unrelease the PO for them to edit the PO.   Appreciate your help..
    Thanks!
    Paula

    Hi,
    All seems very ok,
    But there is a scenario:
    1.PO creator creates an PO,and then he should release the creator-level through ME29N.
    2.The manager also released the PO.
    3.The creator found that he should edit the PO,as your plan setting the changability to provent against editing.
    4.The creator still can edit PO after cancelling creator-level release through ME29N,
        in other words,the manager's release would be cancelled while the creator-level release is cancelled.
    So,my question is how to prevent po creator against cancelling self-level release in ME29N.

  • Lightroom 4 no longer removes cancelled edits

    In the early days of Lightroom there was a problem where if you cancelled a edit on a raw file in Photoshop without changing the file (maybe you opened in error) you still ended up with a tiff or PSD file that then needed manual deletion.
    This was corrected in later versions. Now however the problem seems to have returned! Am I missing something or is it a screw up by Adobe?

    What version of Photoshop and Lightroom are you using?  If you are not using the current versions of both programs then the two are probably out of sync.  Whenever Lightroom is newer than the Photoshop/ACR that you have, then the PSD or TIF has to be created first in order to get the Lightroom changes into Photoshop.  This is because ACR in the older Photoshop cannot read all of the adjustments in the newer Lightroom.

  • PLEASE DO NOT REMOVE/CANCEL TMZ WIDGET SERVICE!

    I noticed today that the TMZ Widget says it's being removed on March 1, 2013!
    Please reconsider; as I know alot of customers including myself use this widget and the other widget services you provide.
    One of the Great Services Verizon provides is the Widget Service; perhaps remove the American Express Ad Widget.
    I'm sure I am not alone on this issue.
    Thank You For Your Re-Consideration on this issue.

    Yes, I agree.  I enjoy reading tmz without having to access internet on computers.  Remove the ones that no one is interested in.

  • Removing "Cancel" Button from JColorChooser...

    Hey
    I was hoping that somebody knew of a way of getting rid of the "Cancel" Button in JColorChooser.
    Thanks for anyones help!
    Claire
    x

    I don't think you can do it without overriding big chunks of it. The problem is that the dialog the buttons are on is actually created when you call showDialog(). Here's something thoughimport java.awt.*;
    import javax.swing.*;
    public class Test2 {
      public static void main(String[] args) {
        JColorChooser jcc = new JColorChooser();
        Color c = null;
        while (c==null) c = jcc.showDialog(new JFrame(), "Pick a Color", Color.white);
        System.out.println("You picked "+c);
        System.exit(0);
    }

  • IPod calendar appointment setting freezes and does not accept Done or Cancel button action

    I tried to make appointment within time frame on iPod touch, and set start/finish times, and pressed "done" on UR screen. It changed color but did not execute the appointment. I then pressed "cancel" to see if I could remove the appointment settings and return to the earlier screen. It changed color but did not execute the cancellation.  I cannot return to the monthly page of the calendar.  It does execute the "all day" setting on the rotary-style date wheel, and the all day slider does cancel itself when I slide the on/off key.  Is my iPod touch starting to fail?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                                      

  • Cancelled (detached) events showing on shared calendar - help!

    I can't figure out how to remove cancelled events from showing in iCal on a shared calendar. We use Zimbra for mail, etc. I subscribe to my boss' calendar and it is showing his cancelled (detached) events. They do not show in his iCal on his computer and they don't show in Zimbra. They only show in my iCal. I've looking in every preference I can find....I've tried un-subscribing to the calendar and then re-subscribing. Nothing seems to work. Any ideas??

    Consequently........it only seems to happen with recurring events we migrated from Microsoft Exchange. I cannot replicate it with a new appointment. I would still, however, like to be able to remove ones that are currently here. Since, they are recurring, they do show in the future, as well.

Maybe you are looking for

  • Icloud: The maximum number of free accounts have been activated on this iPhone.

    HI, I just bought a used (second hand) iphone 3gs recently.  I have activated my apple id it's working for app-store well, but when i try to use it for icloud it gives me the error that "The maximum number of free accounts have been activated on this

  • Trying again, please help if you can

    This is my problem. I am trying for a week now to get my apex application working through a remote connection (i.e. accessible through the internet) without success. I have read at least half the board to find a sollution. I just completed the follow

  • Need to download Jdeveloper 903

    I have old application which was developed in JDeveloper 9.0.3 and running on OC4J 9.0.3. My hard drive crushed and lost jdev 903. The application has backup. I need to make changes to application and need jdev 9.0.3. But I can not fund jdeveloper 9.

  • New Itunes 10.0.1 out

    Downloading it now, and maybe.. (prob. not...) they fixed the syncing. I could only hope. be back in a little bit

  • Should I uninstall PSE Ver 9 before installing PSE Ver 12 retail pack?

    MY laptop came with PSE Ver 9 preloaded. I have bought the discs for PSE Ver 12 ( Photoshop and Premier Elements ) In Amazon. Should I uninstall Version 9 using the Program Features Uninstall routine. BEFORE loading Ver 12?