mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 17:36:53 +01:00
13 lines
228 B
AL
13 lines
228 B
AL
codeunit 50831 "Upgrade Sample Trigger Bad"
|
|
{
|
|
Subtype = Upgrade;
|
|
|
|
trigger OnValidateUpgradePerCompany()
|
|
begin
|
|
ValidateAllCustomers();
|
|
end;
|
|
|
|
local procedure ValidateAllCustomers()
|
|
begin
|
|
end;
|
|
}
|