Defines destinations for SAS procedure output and the SAS log.
Windows specifics: | Valid values for file-specification; UNIT= option |
See: | PRINTTO Procedure in Base SAS Procedures Guide |
can be
sends your SAS procedure output to the file FTnnF001.LST, where nn represents the UNIT= value, which can range from 1 to 99. The file is located in the SAS working directory.
filename test printer 'lpt1:'; proc printto log=test; run;
filename myfile 'c:\mydir\mylog.log'; proc printto log=myfile; run;
proc printto print=myprint; run;
proc printto print='lpt1:'; run;
proc printto; run;