Usage Note 24309: Why isn't there any ODS
output for the last procedure in my job?
Ensure that you submit
run;
quit;
before your
ods destination close;
Be aware that in SAS jobs, "step
boundaries" separate each PROC or DATA step. The output from
a SAS procedure is not complete until the step boundary is reached, even
if the contents of the Output window appear complete. A step
boundary is marked when the next procedure or DATA step is encountered
or at the next QUIT statement. That might surprise you: for
most procedures, a RUN statement ends the
step, but for interactive procedures it really takes a
QUIT to end it. To be safe, issue
run; quit;
or just
quit;
before you close an ODS destination.
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.
| 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 12:01:44 |
| Date Created: | 2005-06-21 14:49:36 |