Axelor Doc

Change History

Each record database carries information on its history. You can find out who created it, and who modified for the last time when this happened.

This information can be found in the views forms recordings through the balloon to the right of the toolbar:

Change History

It shows:

  • The date the record was created.
  • The name of the user who created the record.
  • The date the record was updated for the last time.
  • The name of the user who modified the record for the last time.

It can help you to identify the person to contact if you have problems with the data contained in the record.

This information is stored in database, it is possible to recover the business code for external use. The fields have the following properties:

  • Created on:
    • Type: LocalDateTime
    • Name: createdOn
    • Getter: getCreatedOn()
  • Created by:
    • Type: User
    • Name: CreatedBy
    • Getter: getCreatedBy()
  • Updated:
    • Type: LocalDateTime
    • Name: updatedOn
    • Getter: getUpdatedOn()
  • Updated by:
    • Type: User
    • Name: UpdatedBy
    • Getter: getUpdatedBy()