How do I get CR/LF after each record?

This code delivers a text file but all records are strung out in 1 long string.
How do I get them to be on separate lines?

if last-of(sod_due_date) then
do :

export stream outer delimiter ","
sod_due_date
starttot
runtot
starttot - runtot
sod_part.

end.
end.

(rbender@rosina.com
 

samu fish

New Member
CR/LF or just separate lines?

On the subject you said you'd need CR/LF terminated lines but in the text there was just you'd want fields to be on separate lines. So the answer depends what you really need.

If it is enough to have all fields appear on a line of it's own try

Code:
export sod_due_date.
export starttot.
export runtot.
export starttot - runtot.
export sod_part.
 
Top