Hi All:
I have a report that I am trying to print in landscape with a batch job (submitted by Autosys).
No matter what I do, I can't get the orientation to be landscape - it is always portrait. If I run the job interactively, no problem - I can change the orientation to whatever I want.
Basically I do the following:
DM 'DLGPRTSETUP ORIENT=landscape NODISPLAY';
option papersize=letter orientation=landscape pageno=1 nodate;
option sysprintfont=("SAS Monospace" 8);
options printerpath = Postscript;
filename report printer "fully qualified network printer name";
proc printto print=report;
run;
PROC PRINT DATA=REPTDATA UNIFORM NOOBS SPLIT='*';
--- etc.---
Also - the font size won't change either (which I can do interactively).
Any help would be greatly appreciated.