Keep track of who made changes to data in an application

0
Hi everyone, Does anyone know if it’s possible to keep track of who has made changes to data in an application? Thanks, Jon
asked
3 answers
3

There is also a module in the App Store called “Audit Trail” maybe this helps you.

answered
2

Create one attribute as CreatedBy in the respected entity, where ever the data updation / creation flows are there onClick of save or submit action, just retrieve the current logged in user and map this value for CreatedBy. And track this information from db.
 

answered
0

It is built-in.  In your Domain Model open an entity and check the boxes you want “Store ChangedBy” for example.  

 

answered