OnAfterDeleteEvent (Table) trigger event
Version: Available or changed with runtime version 1.0.
Executed after a record is deleted from a table.
Syntax
[EventSubscriber(ObjectType::Table, Database::<Table Name>, 'OnAfterDeleteEvent', '', <SkipOnMissingLicense>, <SkipOnMissingPermission>)]
local procedure MyProcedure(var Rec: Record; RunTrigger: Boolean)
begin
...
end;
Parameters
Rec
Type: Record
The table that raises the event.
RunTrigger
Type: Boolean
Specifies whether to execute the code in the event trigger when it is invoked. If this parameter is true, the code will be run. If this parameter is false, then the code is not run.