- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-13-2017 11:53 AM
is there a way to change the .ics file created for change Requests to mark the calendar item as free instead of busy?
Solved! Go to Solution.
- Labels:
-
Service Portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-14-2017 05:27 PM
- If your Notification is sending calendar invites, it likely uses a template
- Email templates (like "change.calendar.integration") have the values of the ics file
- You can copy that template and modify it as needed to add whatever properties you need
- Outlook seems to use: X-MICROSOFT-CDO-BUSYSTATUS
- You can try adding the following line to the calendar template that your notification is using:
X-MICROSOFT-CDO-BUSYSTATUS:FREE
See this post for a far more in-depth explanation than mine:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-14-2017 05:27 PM
- If your Notification is sending calendar invites, it likely uses a template
- Email templates (like "change.calendar.integration") have the values of the ics file
- You can copy that template and modify it as needed to add whatever properties you need
- Outlook seems to use: X-MICROSOFT-CDO-BUSYSTATUS
- You can try adding the following line to the calendar template that your notification is using:
X-MICROSOFT-CDO-BUSYSTATUS:FREE
See this post for a far more in-depth explanation than mine:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-15-2017 11:39 AM
mine look like this:
BEGIN:VCALENDAR
PRODID:-//Service-now.com//Outlook 11.0 MIMEDIR//EN
VERSION:2.0
METHOD:REQUEST
BEGIN:VEVENT
ATTENDEE;ROLE=REQ-PARTICIPANT;RSVP=TRUE:MAILTO:${to}
ORGANIZER:MAILTO:${from}
DTSTART:${dtstart}
DTEND:${dtend}
LOCATION:${location}
TRANSP:OPAQUE
SEQUENCE:${sys_mod_count}
UID:${number}
DTSTAMP:${dtstamp}
DESCRIPTION:${description}
SUMMARY:${summary}
PRIORITY:3
X-MICROSOFT-CDO-IMPORTANCE:${priority}
STATUS:CONFIRMED
CLASS:PUBLIC
END:VEVENT
END:VCALENDAR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-17-2017 01:07 PM
so i would change it to this?:
BEGIN:VCALENDAR
PRODID:-//Service-now.com//Outlook 11.0 MIMEDIR//EN
VERSION:2.0
METHOD:REQUEST
BEGIN:VEVENT
ATTENDEE;ROLE=REQ-PARTICIPANT;RSVP=TRUE:MAILTO:${to}
ORGANIZER:MAILTO:${from}
DTSTART:${dtstart}
DTEND:${dtend}
LOCATION:${location}
TRANSP:OPAQUE
SEQUENCE:${sys_mod_count}
UID:${number}
DTSTAMP:${dtstamp}
DESCRIPTION:${description}
SUMMARY:${summary}
PRIORITY:3
X-MICROSOFT-CDO-BUSYSTATUS:FREE
STATUS:CONFIRMED
CLASS:PUBLIC
END:VEVENT
END:VCALENDAR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-17-2017 01:17 PM
That looks correct to me.