mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-08 18:31:36 +01:00
Sync knowledge articles with review agent instructions
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
parent
f562fba837
commit
5bcdc55df9
62 changed files with 768 additions and 58 deletions
|
|
@ -0,0 +1,16 @@
|
|||
codeunit 50934 "Perf Sample TempLookup Bad"
|
||||
{
|
||||
procedure MarkSeenCustomers(var SalesLine: Record "Sales Line")
|
||||
var
|
||||
TempCustomer: Record Customer temporary;
|
||||
begin
|
||||
if SalesLine.FindSet() then
|
||||
repeat
|
||||
if not TempCustomer.Get(SalesLine."Sell-to Customer No.") then begin
|
||||
TempCustomer.Init();
|
||||
TempCustomer."No." := SalesLine."Sell-to Customer No.";
|
||||
TempCustomer.Insert();
|
||||
end;
|
||||
until SalesLine.Next() = 0;
|
||||
end;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue