iCal invite for ServiceNow calendar integration shows incorrect datesIssue When users are sent any Calendar notification email, the date for the calendar invite is the same as the moment of submission of the record and not for the time selected for the inviteCauseThis happens because of incorrect mapping of start_date and/or end_date fields for corresponding dtstart or dtend as needed in the sys_impex_map table.ResolutionThis can be corrected by the following steps: Check for the relevant table in the sys_impex_map table.If there is no entry, then create New entry with the following values and save Name: Use the following naming convention: icalendar.<table name>. For example,icalendar.u_my_custom_table.Table: Select the custom table you createdType: Select icalendar In the field maps related list create New field mapping for date fieldsIn the Mapping Entry Wizard, select Mapping to a Database Field.Create field mappings for dtstart and dtend. These variables are required. For example, map the External Name dtstart to the u_meeting_start_time field in u_my_custom_table.Click Submit.Create field mappings for any other iCalendar fields as necessary and click UpdateOnce the field mappings are created, then create an email template that defines the icalendar invitation. In the message text field, mention the date fields like this: DTSTART:${dtstart}DTEND:${dtend} Following this ensure that the existing email notification / create new email notification with the type as Meeting invitation, content type as Plain text only and Email template set as the one which was just created. Even if it is a system table like change_request, and there is no entry in the sys_impex_map table, then it can be created in the same way. The ${dtstart} and ${dtend} would now point to the correct time of the invite and not the creation time of the record.