Hi Friends,
From Cust. Ledger Entry table, there is a Document No. field. The values are:
Document No.
A001
A002
A003
A004
I need to store the combination of these values into one variable and export it in dataport. That is:
varX := A001 + A002 + A003 + A004;
How to do this? Can anyone help to achieve this?
Thanks in advance,
Aarvi.
Comments
The value created would be too large at some point and cause an error.
Has you looked into streaming an output to text. And appending the string with an additional value each time?
https://msdn.microsoft.com/en-us/librar ... 70%29.aspx
viewtopic.php?f=23&t=46393&view=next
http://www.BiloBeauty.com
http://www.autismspeaks.org
I anticipated there could be an error because of having hundreds od Document nos. I asked the business and they said there will not be hundreds of Document nos.
So do you have any idea to accomplish this?