I have the following formula:-
Set(varXML,"");
ForAll(Colrow As _item,
varXML=varXML+
"<Item>
<ArticleInput type=""System.String"">"+_item.Article+"</ArticleInput>
<ArticleDescription type=""System.String"">"+_item.Description+"</ArticleDescription>
<ArticleReturnable type=""System.String"">"+_item.Returnable+"</ArticleReturnable>
<Qty type=""System.Double"">"+_item.Qty+"</Qty>
</Item>";
));
where i am trying to append the text of a variable named varXML inside ForAll, but i am getting an error on the "varXML=varXML".. any advice?
Thanks