OnAfterModifyEvent (Table) trigger event
Version: Available or changed with runtime version 1.0.
Executed after a record is modified in a table.
Syntax
[EventSubscriber(ObjectType::Table, Database::<Table Name>, 'OnAfterModifyEvent', '', <SkipOnMissingLicense>, <SkipOnMissingPermission>)]
local procedure MyProcedure(var Rec: Record; var xRec: Record; RunTrigger: Boolean)
begin
...
end;
Parameters
Rec
Type: Record
The table that raises the event.
xRec
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 executed. If this parameter is false, then the code is not executed.