Concat Code & Text

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?
Tomáš Kapitán

Comments

Sign In or Register to comment.