LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (December 2002, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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???
Comments: cc: "Elmaache, Hamani" <Hamani.Elmaache@ccra-adrc.gc.ca>
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.


Back to: Top of message | Previous page | Main SAS-L page