mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 09:26:52 +01:00
14 lines
339 B
AL
14 lines
339 B
AL
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;
|
|
}
|