Following code can be used to export data from Ax to a CSV file
#FileCommaTextIo
commaTextIo;
FileIOPermission permission;
CustTable custTable;
str fileName = @”C:\test.csv”;
permission = new FileIOPermission(fileName,#io_write);
permission.assert();
commaTextIo = new CommaTextIo(fileName,#io_write);
while select custTable
{
commaTextIo.write(custTable.AccountNum,custTable.Name);
}
CodeAccessPermission::revertAssert();
