PreviousNextIndex

SET-APPL-CONTEXT( ) method

Sets (and records) the application context for the current session in each connected audit-enabled database whose current audit policy has this audit event enabled. Application context provides meaningful information about the conditions under which an application audit event occurred.

This method returns a Base64 character string that specifies the universally unique identifier (UUID) of the primary index for all audit event records generated by this method for this application context. This UUID is recorded in all subsequent audit event records until you either clear this application context or set a different application context. The UUID is 22 characters in length (the two trailing Base64 pad characters are removed).

Return type: CHARACTER

Applies to: AUDIT-CONTROL system handle

Syntax
SET-APPL-CONTEXT( event-context [, event-detail [, audit-custom-detail ] ] ) 

event-context
event-detail
audit-custom-detail

The UUID is saved as the APPL-CONTEXT-ID attribute value for each connected audit-enabled database.

There can be only one active application context per session at any one point in time. To set a different application context for the session, you can:

Calling this method generates an audit event, and creates an audit record for the event in all connected audit-enabled databases according to each database’s current audit policy settings.

The following code fragment illustrates how to use the SET-APPL-CONTEXT( ) method:

DEFINE VARIABLE name AS CHARACTER NO-UNDO. 
DEFINE VARIABLE id   AS CHARACTER NO-UNDO. 
. . . 
id = AUDIT-CONTROL:SET-APPL-CONTEXT("Payroll app", "fica calculation", name). 
. . . 
AUDIT-CONTROL:LOG-AUDIT-EVENT(34123, "payroll.fica.calc"). 
. . . 
AUDIT-CONTROL:CLEAR-APPL-CONTEXT. 

See also: APPL-CONTEXT-ID attribute, CLEAR-APPL-CONTEXT( ) method


OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex