|
  
SAFAUDUE User Exit

.
Name
--------
|
----------------------------------------------------------
SAFAUDUE SAFEXEC
|
|
Input
--------
|
----------------------------------------------------------
Rectype Record
-
|
|
Output
--------
|
----------------------------------------------------------
Return the audit record to be processed. Return a null
record to skip processing for the record. Return the
input audit record to process it without changes.
--
|
Purpose
Use the SAFAUDUE user exit to filter and/or modify the input SafeSFS audit record. This exit may indicate to the SAFGAUD utility that it should: process the audit record as is, process a modified audit record that has been placed on the program stack instead of the original audit record, or skip processing for the audit record.
To enable the user exit, code a Rexx exec to perform the audit record processing desired and place it on any mdisk accessed by SafeSFS Administrators who may run the SAFGAUD Utility. The Rexx exec should be named SAFAUDUE SAFEXEC.
Refer to the Audit Record Format tables in Chapter 12, "SafeSFS Auditing".
Usage Notes
- If you wish to modify the audit record being processed, return the modified audit record you wish SafeSFS to process.
Return (Modified_Record)
- If you wish to skip the audit record, return a NULL. Record.
Return (`')
- If you wish the audit record to be processed without modification, return the original audit record that was passed to the user exit.
Return (Original_Record)
  
|