Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
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