Chapter Contents |
Previous |
Next |
The ODS Statements |
Default: | Not using the ODS EXCLUDE statement is the same
as specifying
ODS EXCLUDE NONE; |
Tip: | Although you can maintain a selection list for one destination and an exclusion list for another, it is easier to understand the results if you maintain the same types of lists for all the destinations that you route output to. |
See also: | ODS SELECT Statement |
ODS <ODS-destination> EXCLUDE exclusion(s) | ALL | NONE; |
Required Arguments |
Each exclusion has the following form:
output-object<(PERSIST)> |
To specify an output object, you need to know what output objects your SAS program produces. The ODS TRACE statement writes to the SAS log a trace record that includes the path, the label, and other information about each output object that is produced. (See ODS TRACE Statement.) You can specify an output object as
Univariate.City_Pop_90.TestsForLocationpartial paths are
City_Pop_90.TestsForLocation
TestsForLocation
"The UNIVARIATE Procedure"."CityPop_90" ."Tests For Location"partial label paths are
"CityPop_90"."Tests For Location"
"Tests For Location"
Interaction: | If you specify ALL without specifying a destination, ODS sets the overall list to EXCLUDE ALL and sets all other lists to their defaults. |
Tip: | Using EXCLUDE ALL is different from closing a destination. The destination remains open, but ODS does not send any output objects to the destination. |
Interaction: | If you specify NONE without specifying a destination, ODS sets the overall list to EXCLUDE NONE and sets all other lists to their defaults. |
Options |
Default: | If you omit ODS-destination, ODS writes to the overall exclusion list. |
Tip: | To set the exclusion list for the Output destination to something other than the default, use the ODS OUTPUT statement (see ODS OUTPUT Statement). |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.