Hello,
I tried to concat Code with Text. I have table with item categories and need to save categories (code) as text to Item table. Format: "#cat1#cat2#cat3#".
My attempt:
REPEAT
lteCategories := lteCategories+lreItemCategories."Category Code";
lteCategories := lteCategories+'#';
UNTIL lreItemCategories.NEXT() = 0;
But it didn't worked. So where is problem?
Comments
Why x := x + y not work, but x := y + x work fine?