I am importing from an Excel/OpenOffice generated CSV file into Navision (Classic Client NAV2009) with this code.
MyFile.Textmode(TRUE);
MyFile.OPEN('c:\temp\test.csv');
MyFile.READ(MyLine); (Text field);
MyFile.CLOSE;
CLEAR(MyRec);
MyRec.Text1 := MyLine;
MyRec.Insert;
COMMIT;
test.cvs is an export from text.xls and has this single line:
ABC äöüßÄÜÖ éèÑñ
What encoding should I use when saving this file from xls to csv so the special characters arrive in the Navision record unharmed?