bcquality/microsoft/knowledge/security/keep-recordref-open-callers-non-public.bad.al
Jesper Schulz-Wedde 5bcdc55df9 Sync knowledge articles with review agent instructions
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-05 14:08:32 +02:00

12 lines
257 B
AL

codeunit 50243 "Sec Sample RecordRef Bad"
{
procedure ArchiveRecord(RecId: RecordId)
var
RecRef: RecordRef;
begin
RecRef.Open(RecId.TableNo);
RecRef.Get(RecId);
RecRef.Delete();
RecRef.Close();
end;
}