We are using the following command to print the output directly to a printer in Unix.
FILENAME outfile "/myfolder/myfile.txt";
FILENAME outfile pipe 'lp -d pr908104';
The link
http://support.sas.com/onlinedoc/913/getDoc/en/odsug.hlp/a002217095.htm#a002536270
also mentions about using unix command to print
filename your-fileref pipe 'lpr -P printer-name';
ods printer file=your-fileref;
The example and the code we use shows that we have to use the Unix
How can i avoid using Unix commands to send the output to print as we are not permitted to use Unix commands for security reasons.
Can I use ODS Printer
Please help me with the syntax.