bendaluz2! New Question !

make

Member
Thanks for help, but your solution doesnt work with the export stream statement.
this ist the line :
export stream strOut Delimiter ";" Cust.name cust.age.

how can i convert this to IBM850 ?

Make
 
you need to change your output stream command, not your export stream command

i.e.
<pre>
output stream strOut to blah convert target "ibm850".

for each Cust
no-lock:
export stream strOut Delimiter ";" Cust.name cust.age.
end

output stream strOut close.
</pre>
 
Back
Top