Bit of a kludge, but you can create a code object and use ods to create a comma separated text file.
ods csv file='stephanie.txt';
run;
proc print data=zos.dataset;
run;
ods csv close;
> Hi
>
> Using SEG 4.1 thin client and a Zos server, I'd like
> to export a SAS table from my server to my PC as a
> .txt file. How do I do that ?
... View more