Hi
Iam creating a pdf file from a sas dataset.
Here is my coding, In my output I see The SAS system at the top of the every page. Can any one please help me out how to get rid out of the title The SAS system from the PDF file output.
options orientation = landscape;
options papersize = legal;
options ls = 150 pagesize=72;
options nodate nonumber;
options title='';
proc template;
define style styles.test;
parent = styles.printer;
style batch from output /
outputwidth = 100%
font_size=9.9pt
font_face = courier;
end;
run;
filename ftr "C:\DOWNLOAD\xxxxxx.TXT";
ods listing close;
ods pdf file = 'C:\DOWNLOAD\yyyyyyyy.PDF'
style=styles.test notoc;
data ftr;
infile ftr;
input @1 rec $char149.;
run;
data _null_;
infile ftr;
file print ps=72;
input;
put _infile_;
run;
ods _all_ close;
Thanks
Inpu