Chapter Contents |
Previous |
Next |
SAS Companion for the OS/390 Environment |
proc printto print='myid.output.data(member)' new;
However, if you plan to specify the same external file several times in your SAS program, you can allocate the file using a FILENAME statement, a JCL DD statement, or the TSO ALLOCATE command. See Introduction for details and examples. Once the external file is allocated, use the PROC PRINTTO statement options LOG= or PRINT= at any point in your SAS session to direct the log or procedure output to the external file. Specify the fileref or the DDname that is associated with the external file. Here is an example that uses FILENAME statements to allocate external files for both the log and the procedure output:
filename printout 'myid.output.prtdata' disp=old; filename logout 'myid.output.logdata' disp=old; proc printto print=printout log=logout new;
The log and procedure output continue to be directed to the designated external file until another PROC PRINTTO statement redirects them.
The NEW option causes any existing information in the file to be cleared. If you omit the NEW option from the PROC PRINTTO statement, the SAS log or procedure output is appended to existing sequential data sets. You must specify NEW when routing to a PDS or PDSE because you cannot append data to a member of a partitioned data set.
If you want to direct both the log and procedure output to partitioned data set members, the members must be in a PDSE or in different data sets. SAS allows you to write to two members of a PDSE, but not to two members of a PDS.
Directing Output Back to the Default Destination |
proc printto; run;
See Default Destinations for SAS Output Files for a list of the default destinations.
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.