It’s a bit tricky to audit import directly as there are no EventListeners anywhere in this process. I can see 2 options how you can achieve this
-
Enable Import audit event in audit config
by this you will get an AuditEvent with each file you impor to IIQ
-
Enable CRUD loggers on all relevant classes
this will give you AuditEvent created whenever object of this class is modified (not only by import but also manualy in the environment)
I believe there is third option - to write your own importer with audit events registered but this might be much bigger task.



