mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 09:26:52 +01:00
14 lines
368 B
AL
14 lines
368 B
AL
codeunit 50129 "Perf Sample CommitInLoop Bad"
|
|
{
|
|
procedure NormalizeCustomerNames()
|
|
var
|
|
Customer: Record Customer;
|
|
begin
|
|
if Customer.FindSet(true) then
|
|
repeat
|
|
Customer.Name := UpperCase(Customer.Name);
|
|
Customer.Modify();
|
|
Commit();
|
|
until Customer.Next() = 0;
|
|
end;
|
|
}
|