Set up READ auditing
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
If your application auditing requires knowing when certain records are read and presented to a user, you must change your application to:
- Define an application-defined
READaudit event in the_aud-eventtable. (Choose an event equal to or greater than 32000.) - Define the data formats for the audit records context (indexed) and detail fields. The context field format can be used to index on and find records for reporting. It is recommended that you mimic the OpenEdge database event default field value recording, which streams the field values.
- Add code to your application where the record read operations occur, and
execute the LOG-AUDIT-EVENT method (for the AUDIT-CONTROL system handle) to record the application-defined
event.
For more information about the method and handle, see ABL Reference.
- Create a
.adfile to go with your applications deployment to load the_aud-eventtable definitions you have made into the production database instance.