bcquality/microsoft/knowledge/upgrade/guard-performance-impacting-upgrade-triggers.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

13 lines
228 B
AL

codeunit 50831 "Upgrade Sample Trigger Bad"
{
Subtype = Upgrade;
trigger OnValidateUpgradePerCompany()
begin
ValidateAllCustomers();
end;
local procedure ValidateAllCustomers()
begin
end;
}