I've been given a challenge.
I have an ODS RTF report that drops the document into a directory as a file, e.g.
c:\temp\Reprot1.rtf. I've been asked to send this document directly to a print queue, e.g. \\cypdev\CQREDEV . My direct to rtf code looks like this:
ods rtf file='c:\temp\Report1.rtf';
proc print data=sashelp.class;
run;
ods rtf close;
How do I incorporate the printer destination for the rtf file?
Thanks,
Bill