Financials dataport export to be compatible with 3.xx

I have to export alot of fields from NF to 3.xx. The fileformat of the NF dataport has to be variable because of the limitation of page width in 3.xx (260 characters) In 3.xx if the importing fields exceeds this width, we use a character at the end, which is translated to newline. I can not seem to find a simmular action/property in NF, whcich will create this newline. Best regards Christian Dam-Hansen

It’s simply. Declare two char variables CR Char LF Char. EOS Text 2. CR := 13; LF := 10; EOS := CR + LF. Insert EOS (End of string) as dataport fild. That’s all. Best regards