Hi all
Running AX 2012 R3 CU9
Looking at an X++ method which I have that exports bill of exchange info to a text file at the moment. Basically it builds up a long string, and then exports that to the file.
eg:
outputTxt += strRFix(this.zipCode(), #ZipCode, '0');
.... (insert more here)
file.write(outputTxt);
However at a certain point, we have a business requirement to insert a carriage return on the line. I can't work out how to hardcode that. Is there a method which the X++ compiler will understand as Chr(13) or equivalent?
Thanks very much for your help in advance
Luke
*This post is locked for comments