Currently when you import a Sugar Call or Meeting with an attached Contact into Outlook it creates an Appointment with "Invite Attendees" set to true. This replaces the "Save & Close" button with the "Send" button.
Our users are concerned about sending meeting notes (not meant to be seen) when they are actually trying to Save a change. Do you know what logic Outlook is using to set this. It doesn't appear to be manually coded. As near as I can tell if it has a contact it will automagically set it to true.Is it possible to set this option to false even when there are Contacts attached?
For those who keep track of these things...
The culprit is olMeetingStatus set when Appointments are added. The plugin adds all Sugar meetings ("Held" and "Planned") as Outlook Meetings (go figure) or olMeetingStatus.olMeeting, and not as appointments which is olMeetingStatus.olNonMeeting. For the record it sets Sugar Meetings "Not Held" as olMeetingStatus.olMeetingCanceled, everything else is olMeetingStatus.olMeeting.
Bottom line is in Outlook Meetings have Invitees, Outlook Appointments don't and the Plug-In assumes all Sugar Items are Meetings. Going the other way, new Items are sent to Sugar as "Planned" unless they are cancelled in which case they are sent as "Not Held".
Sugar meetings can be "Held", "Not Held" and "Planned". Outlook appointments can be olMeeting, olNonMeeting, olMeetingCancelled or olMeetingReceived. "Not Held" = olMeetingCancelled and "Held", "Planned" and anything else = olMeeting.
Nuff Said