Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
Version: Available or changed with runtime version 1.0.
Executed after the OnInsertRecord trigger, which is called before a record is inserted in a table.
Syntax
[EventSubscriber(ObjectType::Page, Page::<Page Name>, 'OnInsertRecordEvent', '', <SkipOnMissingLicense>, <SkipOnMissingPermission>)]
local procedure MyProcedure(var Rec: Record; BelowxRec: Boolean; var xRec: Record; var AllowInsert: Boolean)
begin
...
end;
Parameters
Rec
Type: Record
The table that raises the event.
BelowxRec
Type: Boolean
Specifies whether the new record was inserted after the last record in the table (xRec).
xRec
Type: Record
The table that raises the event.
AllowInsert
Type: Boolean
Specifies whether the OnInsertRecord trigger call was successful and the record can be modified. If this parameter is true, the code will be executed. If this parameter is false, then the code is not executed.