Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Occurs after modifications have been made and the stored procedure editor for the database has been closed.
PROCEDURE dbc_AfterModifyProc( )
Remarks
You can use the dbc_AfterModifyProc event to track access to the database after the stored procedure is modified.
Example
* Reports to the screen Event name, where it is called.
PROCEDURE dbc_AfterModifyProc
? '>> ' + PROGRAM()
?? ' in ' + SUBSTR(SYS(16),RAT('\',SYS(16))+1)
? ' Current DBC: ' + SUBSTR(DBC(),RAT('\',DBC())+1)+' /end/ '
ENDPROC