anandpr1989
20th August 2015, 16:09
Hi All,

Is that possible to put headers in csv file which we will use to import data in baan?

If yes then what should changes I need to do in the report?

Please help....

bhushanchanda
20th August 2015, 17:07
Hi,

Yes, you can add header to your CSV using seq.* functions.

1. seq.open() - a/a+as mode
2. seq.seek() - 0 as opt
3. seq.puts() - put your header(if required, put a new line character at the end)
4. seq.close() - close the file