How to apply audit data to fix inaccurate journal entries in a record's activity formatter, secondary to an export/import.Issue <!-- 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:; } hr{ border-top-width: 1px; border-top-style: solid; border-top-color: #cccccc; } ul { list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Overview This applies mostly to task-based records such as Incident, Problem, Change Request, etc... any record which may have comments, work notes, or other journal fields displayed on a form via some sort of Activity Formatter. These entries should be identical following a clone, but sometimes these types of records are moved by other means, such as Export to XML, followed by an XML Import. Figure Legend Figure 1.1 - displays an original activity feed. This incident is one which may be exported. Figure 2.1 - displays a common example of what a user may see after importing a record. You can see the conversation appears out of order and does not have the expected timestamps. Figure 3.1 - this is the history view of an incident. We will use the Delete action in this KB. Figure 4.1 - this is the audit [sys_audit] data which is missing on the target instance. We see how to export all necessary data from the originating instance in this screenshot. Steps to Relief In the originating instance, copy the Sys_ID of the record (ex: navigate to INC0010017 and copy the Sys_ID)Still in the originating instance, navigate to <instanceName>.service-now.com/sys_audit_list.do?sysparm_filter_only=trueBuild a filter where Document Key is <record_sys_id> and Run. You should see results similar to Figure 4.1.If needed, you can sort or match to only display the affected journal fields. Look in the Field Name column for something like Comments or work_notes.Right-click and select Export >> XML.Navigate to the target instance. The target instance should already have the affected record imported and exhibit the issue (Figure 2.1) Navigate to any list in the target instance and use the Import XML option to import the file downloaded from Step 5.Navigate to the target record (Figure 2.1 again)Right-click the form header and select History >> List. You should see something similar to Figure 3.1.Select the Delete UI Action.Now the target record should reload, and the Formatter should use the new [sys_audit] data to correctly render the journal entries. The instances should now match.