Environment
Remote Request Management (RRM)
Remote Request Auditing (Ext Pnts)
Exit Programs installed
Work With Exit Points
Work with Exit Programs
Work with Remote Svr Exit Programs
Add Exit Program (ADDEXITPGM)
Remove Exit Program (RMVEXITPGM)
Remove Remote Svr Exit Programs
Situation
How to audit exit point usage and changes?
How to determine if exit programs were removed from the exit points?
Resolution
To display journal entries containing exit point usage and change information, on a commad line, type the following command and press Enter:
DSPJRN JRN(QAUDJRN) FROMTIME(NNNNNN) JRNCDE((T)) ENTTYP(GR)
where NNNNNN is the date of the journal entry in the MMDDYY format.
For example, to display the journal entries with exit point usage and change information for May 31, 2005, on the command line, type the following command and press Enter.
DSPJRN JRN(QAUDJRN) FROMTIME(053105) JRNCDE((T)) ENTTYP(GR)
To list the journal entries for exit program removed from exit points since May 31, 2005, on the command line, run the following commands:
DSPJRN JRN(QAUDJRN) FROMTIME(053105) JRNCDE((T)) ENTTYP(GR) OUTPUT(*OUTFILE) OUTFILFMT(*TYPE4) OUTFILE(QGPL/DSPJRN)
ADDLIBLE PSCOMMON
PSRUNSQL REQUEST('select JOJOB, JOUSER, digits(JONBR) as JOBNBR, JOTSTP, JOPGM, JOUSPF, JOESD, JOSYNM from QGPL/DSPJRN where substr(JOESD,1,3) = ''AZC''') OUTPUT(*PRINT) PRTFILE(QPRT198L)
RMVLIBLE PSCOMMON