Table
Last updated 31/10/2023
Event | Executes | Description |
---|---|---|
Do Before Insert | Server | Executes before the new record is committed into the table, the context contains an object called new which contains the new record being inserted in the table. |
Do After Insert | Server | Executes after a new record has been committed into the table. |
Do Before Update | Server | Executes before the updated record is committed into the table. The context contains two objects called old and new which contain the old record currently existing in the table, and the new updated record being updated in the table. |
Do After Update | Server | Executes after the updated record has been committed into the table. |
Do Before Delete | Server | Executes before the record is deleted from the table, the context contains an object called old which contains the old record being deleted from the table. |
Do After Delete | Server | Executes after the record has been deleted from the table. |