Date: Tue, 10 Dec 2002 15:42:07 -0500
Reply-To: "Fehd, Ronald J. (PHPPO)" <rjf2@CDC.GOV>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Fehd, Ronald J. (PHPPO)" <rjf2@CDC.GOV>
Subject: Re: WARNING: No output destinations active???
Content-Type: text/plain
> From: Elmaache, Hamani [mailto:Hamani.Elmaache@ccra-adrc.gc.ca]
> I don't know what's happened, I can't get an OUTPUT for any
> Proc (like Proc freq or Proc Contents...)
>
> In the LOG I got the following message:
> WARNING: No output destinations active.
>
> What'the problem, and how to fix it?
you shot yourself in the foot
with ODS!
ods listing close;%*write to SAS.list;
ods rtf body="&PATH_RTF\&DATA..RTF";
%*some procedure;
ods rtf close;
you are missing the following statement
which turns SAS listing back on:
ods listing;%*OPEN;
run;
Ron Fehd the macro maven CDC Atlanta GA USA RJF2@cdc.gov
do not fold, spindle, or mutilate -- IBM punch card
... the PRINT destination.
|