Usage Note 48034: SAS® Drug Development 3.5 - Using PROC PRINTTO to redirect LOG and LST files
In SAS® Drug Development, here is an example of how to redirect output using PROC PRINTTO in the Process Editor:
%let server=your instance\webdav\;
%let datapath=your input path;
%let outpath=your output path;
filename mylst webdav "&server/&outpath/my_listing.lst" user="&_sddusr_" pw="&_sddpw_";
filename mylog webdav "&server/&outpath/my_listing.log" user="&_sddusr_" pw="&_sddpw_";
/* Here is how you redirect output from the Process Editor to your log and lst location: */
/* The New option creates a new file with each run. */
/* Without the New option results in appending to existing files */
proc printto print=mylst log=mylog new;
run;
libname indata "&server/&datapath" webdav user="&_sddusr_" pw="&_sddpw_";
libname out "&server/&outpath" webdav user="&_sddusr_" pw="&_sddpw_";
data ae;
set indata.ae;
run;
proc print data=ae(obs=20);
run;
/* Here is how you redirect output back to the Process Editor log and lst: */
proc printto print=_IBXLST_ log=_IBXLOG_;
run;
Operating System and Release Information
| SAS System | SAS Drug Development | Microsoft® Windows® for 64-Bit Itanium-based Systems | | |
| Microsoft Windows XP 64-bit Edition | | |
| Microsoft® Windows® for x64 | | |
| Microsoft Windows 8 | | |
| Microsoft Windows 2012 | | |
| Microsoft Windows Server 2008 | | |
| Microsoft Windows XP Professional | | |
| Windows 7 Enterprise 32 bit | | |
| Windows 7 Enterprise x64 | | |
| Windows 7 Professional 32 bit | | |
| Windows 7 Professional x64 | | |
| Windows 7 Ultimate 32 bit | | |
| Windows 7 Ultimate x64 | | |
| Windows Vista | | |
| Windows Vista for x64 | | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
SAS® Drug Development 3.5 - Using PROC PRINTTO to redirect LOG and LST files
| Date Modified: | 2013-09-27 16:02:57 |
| Date Created: | 2012-09-28 09:49:34 |