Audit trail

Description of Audit trail functionality

Komment give you a full history of all changes made - right out the box. Full trace-ability gives you the security of always knowing what has been changed, who made the changes and when the changes occurred.

As with any other data generated by Komment, they are available to use in any visualization in your Qlik Sense apps. You can even load audit trails from different Komment objects in different apps into one and the same Master Audit trail application if needed.

Created by

To easily display the actual user you can use a formula similar to this:

=SubField([Komment_DEMO2.CreatedBy],'Id=',2)

Created at

You can use the normal Timestamp funtion to show the Created at in a nice way:

=timestamp([Komment_DEMO2.CreatedAt])

If you use ',' as decimal separator in your load script you can use this function to display the Created at correctly:

=timestamp(Replace([Komment_DEMO2.CreatedAt],'.',','))

Last updated