ABL for generating application events
- Last Updated: January 17, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
Many ABL statements and functions can generate database or internal events automatically, based active audit policies. In other words, OpenEdge defines events that certain ABL statements and functions always generate when audit policies specify them to do so. These include statements, for example, that participate in database transactions and that control the assertion of user identities, among others.
ABL also allows you to explicitly generate application events
using the AUDIT-CONTROL system handle. These include
events that you define and OpenEdge-defined events that control
audit event context. If database options are set to enforce it,
the database connection ID for a database must have the Application
Audit Event Inserter privilege in order to generate and record audit
events using the AUDIT-CONTROL system handle. The
following table lists the AUDIT-CONTROL handle
methods that you can use to explicitly generate events in your application:
| This AUDIT-CONTROL method... | Provides this function... |
|---|---|
|
Starts an event group |
|
Clears the current application context |
|
Ends the current event group |
|
Records an application-defined audit event |
|
Sets the current application context |
The following sections describe how to code these methods.