Created Timestamp in record history (history -> list) does not show the actual date and time of the updateIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table tr td { padding: 15px; } 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; } .spanColor { color: #646464; } 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; } --> When adding the 'Created' field to the 'Audit History' related list on a record to see when the record was created, it does not show the expected time of when the update was done; It is not the value of the sys_audit record that was created for the update to the field. CauseThe 'Created' field reflects the creation time of the history record. Not the created time of the underlying audit record / the time of the update. As per the documentation; "The system generates history set records when a user requests to view an audited record's history. If the record is on an audited table, a history set is generated when the record is inserted. A user must view a record for the system to create or update a history set for that record." Additionally, this part in the documentation says: "The system limits History Set and History records by: • Having the table cleaner delete History Set records that have not been updated in 30 days. • Using table rotation to rotate between four History tables every seven days. This means the system drops History records that are older than 28 days. Should someone need historical information again at a later date, the system can regenerate it from auditing source records." So after some time the history records get cleaned, but are automatically rebuilt when a users opens the record again. The Created timestamp then reflects the (new) creation of the history record and not the creation time of the underlying audit record. ResolutionInstead of relying on the Created field to see when the update was done, use teh 'Update time' field. That field reflects the actual time when the update was done (ie the creation time of the underlying audit record). Together with the 'Update Number' field, this can be used to see the updates in the correct sequence of events