How to troubleshoot SLA Warning Notifications showing incorrect percentagesIssue <!-- table.marginTable{ border:1px solid; border-color:#CCCCCC; background-color: #FFFFFF; width: 86%; padding: 45px 45px 45px 45px; border-radius:15; margin-top:60px; margin-bottom:60px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.fieldTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 85%; border-spacing:0; } table.columnTable{ border:0px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 90%; vertical-align:middle; border-spacing:0px; } .spcol td{ border-bottom: 0px solid; border-right: 0px solid; border-color:#E0E0E0; background-color: #ffffff; height: 23px; padding-top: .0em; padding-bottom: .0em; padding-left: .4em; padding-right: .0em; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd2{ color: #D1232B; font-weight:; font-size:18px; } .hd3{ color: #646464; font-weight:bold; font-size:15px; text-decoration: underline; } .hd4{ color: #999999; font-weight:; font-size:15 pt; text-decoration:; } --> When using Service Level Agreement (SLA) calculated values in a task_sla email notification, inaccurate values are sent out in the resulting emails. For example, a SLA Percentage Timer is set up to fire at 75% completion of an SLA. This activity calls another activity that creates a sla.warning event that fires an email notification. The subject line of the SLA notification is set to the dynamic value ${business_percentage} and the resulting emails show a value other than 75%.CauseThe Workflow Percentage Timers and the SLA Calculations are completely independent of each other. Using ${percentage} in a notification will only ever display the most recently calculated value of the task_sla. Note: SLAs are calculated on a scheduled basis, and progressively more frequently the closer they are to their planned end time. For more details on how SLAs are calculated, refer to SLA Automation in the ServiceNow product documentation. The Calculate SLAs on Display (glide.sla.calculate_on_display) runs the calculation of SLAs when a task record is viewed to display real-time numbers (percentages, time used, and so on). To perform the calculation, this property imposes an overhead necessary on a case-by-case basis. If the [glide.sla.calculate_on_display] property is turned on, SLAs are calculated when the case form is viewed. This does not mean that SLAs are updated when a report is run or a case is viewed in a list. If this property is turned on, the SLA updates when the case form is viewed. For performance reasons, SLAs cannot be calculated on demand. By default, this property is turned off, meaning the business elapsed time and all other calculated fields will only ever represent the values from the last time the SLA was calculated.ResolutionTo specify elapsed percentage in SLA notifications, it is recommended to use notifications for each percentage level. For example, an email notification for "75 percent SLA Warning" is created and a special event is used to trigger that notification. The event can be called "sla.warning.75". Another way to accomplish this is by calling the code directly to update the SLA before sending the notification. Using code similar to the Run SLA Calculation UI Action can do this.