OnDeleteRecordEvent (Page) Trigger Event

Version: Available or changed with runtime version 1.0.

Executed after the OnDeleteRecord trigger, which is called before a record is deleted from a table.

Syntax

[EventSubscriber(ObjectType::Page, Page::<Page Name>, 'OnDeleteRecordEvent', '', <SkipOnMissingLicense>, <SkipOnMissingPermission>)]
local procedure MyProcedure(var Rec: Record; var AllowDelete: Boolean)
begin
    ...
end;

Parameters

Rec
 Type: Record
The table that raises the event.

AllowDelete
 Type: Boolean
Specifies whether the OnDeleteRecord trigger call was successful and the record can be deleted. 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