Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
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.