Usage Note 23675: How to generate multiple copies of output from the same ODS destination
In SAS 8.2, you can generate an additional copy of the output from the same ODS destination by using a destination alias. The example below generates HTML and sends it to the server with
SAS/IntrNet, and also creates two files with the same output. The aliases for the files TEMP.HTML and LAST.HTML are 1 and FRED, respectively.
ods html file=_webout(dynamic);
ods html(1) file='temp.html';
ods html(id=fred) file='last.html';
proc print data=sashelp.class;
run;
ods _all_ close;
This syntax is also applicable to other destinations like PDF and RTF.
See also the PROC TEMPLATE FAQ and Concepts.
Operating System and Release Information
*
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.
This note illustrates how to generate multiple copies of output from the same ODS destination.
| Type: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> HTML Third Party ==> Output ==> PDF Third Party ==> Output ==> Postscript Third Party ==> Output ==> RTF
|
| Date Modified: | 2007-10-03 10:42:30 |
| Date Created: | 2004-02-04 14:19:29 |