Audit Trail Log

0
Hi Experts,   I have some issue on my audit trail log.  I have two entities named Project and Attachment table, with association relationship one to many, where in one project can have multiple attachments. The audited entity is the Project when I try to have changes in attachment the changes is not logged. Do you know why the changes is not logged? any help would be appreciated, Thanks .
asked
1 answers
1

In a one-to-many assoiation, ownership lies with the 'many' entity, in your case Attachment. That means that all info about the associated objects will be stored with the Attachment-objects, including changes. When you change an Attachment, the associated Project object will not automatically know that something has changed. You will have to implement this manually, aka make or add to the "Save changes to Attachment"-flow an action that will make a log entry for the associated Project.

answered