Poznámka:
Přístup k této stránce vyžaduje autorizaci. Můžete se zkusit přihlásit nebo změnit adresáře.
Přístup k této stránce vyžaduje autorizaci. Můžete zkusit změnit adresáře.
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