OnBeforeModifyEvent (Table) Trigger Event

Version: Available or changed with runtime version 1.0.

Executed before a record is modified in a table.

Syntax

[EventSubscriber(ObjectType::Table, Database::<Table Name>, 'OnBeforeModifyEvent', '', <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.

See Also

Get Started with AL
Developing Extensions