Using email client will not update the related record sys_updated_on timesIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } 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.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Problem When sending an mail with the mail client in an incident, sys_updated_on does not the 'updated' timestamp of the related record (e.g. incident). Symptoms If you send an Email using the Email client that you can access from menu top bar in any incident. The Email sent created an activity, but this new activity shown in the Activities journal entries does not update the main parent incident record and the incident system timestamp "sys_updated_on" does not get updated either This was intended behavior for Emails not to update their related records, however there may be situations when this is necessary. Cause The email client does not perform an update on the related record Resolution There is no plans to change this behavior. Instead, you could customise the system to perform an update once an email is sent by the email client. Here is an example Scripted business rule on sys_email table as follow: Table [sys_email] When BEFORE UPDATE Order =100 target table is incident AND Weight is -1 AND Type ChangesTo sent Script = (function executeRule(current, previous /*null when async*/ ) { // Look up the target record 'instance' in the incident table var curtim = new GlideDateTime(); var inc1 = new GlideRecord('incident'); inc1.addQuery('sys_id', current.instance); inc1.query(); if (inc1.next()) { inc1.sys_updated_on = curtim; inc1.update(); gs.log("Email sent by user, incident " + inc1.number + " sys_updated_on updated with timestamp " + curtim); } })(current, previous); Warning: Please fully test on development before making changes to production