mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 17:36:53 +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,14 @@
|
|||
codeunit 50932 "Perf Sample TextConcat Bad"
|
||||
{
|
||||
procedure BuildItemList(var Item: Record Item): Text
|
||||
var
|
||||
Result: Text;
|
||||
begin
|
||||
if Item.FindSet() then
|
||||
repeat
|
||||
Result += StrSubstNo('%1,%2', Item."No.", Item.Description);
|
||||
until Item.Next() = 0;
|
||||
|
||||
exit(Result);
|
||||
end;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue