Reputation: 643
I have many forms in my database for which I've been able to capture a CREATE_DATE_TIME for each record in each table. Is there a way to also capture the MOD_DATE_TIME for each record? I.e. capture when the last time was that the record was modified?
Upvotes: 0
Views: 42
Reputation: 55906
Set the value of MOD_DATE_TIME
in the BeforeUpdate
event of the form - just like you already for CREATE_DATE_TIME
in the BeforeInsert
event.
Upvotes: 1