เขียนข้อมูลจาก Axapta ลงไฟล์ Text หรือ Csv
1. ประกาศตัวแปร
AsciiIO myFile;
;
2. ใช้คำสั่งด้านล่างนี้บน SQL ที่ SELECT ข้อมูล และระบุ ที่เก็บและชื่อไฟล์ที่มันจะสร้างขึ้น
myFile=new AsciiIO("c:\\min.txt","a");
3. ใช้คำสั่งยัดตัวแปรใส่ในไฟล์ ดังนี้
myfile.write(strfmt("%1",..ตัวแปรหรือค่าที่ต้องการเขียน...));
เช่น myfile.write(strfmt("%1",TableSalesLine.SalesId));
No comments:
Post a Comment