nneilitz
2nd February 2004, 17:48
I seem to be running into a file length issue with seq.open. After a large number of seq.puts commands the output appears to be getting "chopped off". Are there any suggestions on how to get around this or any information on what the limitation is?

Neal Matthews
2nd February 2004, 19:28
The online programmers manual suggests a limit of 2048.

http://www.baanboard.com/programmers_manual_baanerp_help_functions_directory_file_operations_seq_puts


Is there any way you can count how many characters you are trying to write ?

Regards
Neal Matthews
Intier Automotive - IT Support Analyst

nneilitz
2nd February 2004, 19:33
Actually I was looking at the entire file, not just the line.
It appears my problem was caused by not properly closing the file after writing to it.