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 (July 2000, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 31 Jul 2000 23:54:54 GMT
Reply-To:     Mark Van De Vyver <mvdv@BIGFOOT.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Mark Van De Vyver <mvdv@BIGFOOT.COM>
Organization: Deja.com - Before you buy.
Subject:      The answer - Re: Howto: Programmatically clear the Results window

I recieved the following very prompt response from SAS (Paul Kent):

Hey Mark,

We don't have a good answer for v8.0 of SAS - this was one of those things we realised too late. your only option there is to run your sas job as a batch job not using display manager.

in v8.1 and onwards we have added

ODS NORESULTS; ...

and

ODS RESULTS; ...

that turn the results window on and off - ODS NORESULTS doesn't actually close the window, it just stops sending notifications about the output objects, so the results window receives no updates until you say ODS RESULTS to enable that functionality again...

8.1 is available - your site rep should be able to contact SAS tech support and request it...

Hope this helps, Paul

In article <8m35ou$8st$1@nnrp1.deja.com>, Mark Van De Vyver <mvdv@bigfoot.com> wrote: > Hi > In SAS v8 on WindowsNT I've managed to use ODS to output some Proc > AutoReg results to datasets e.g: > > ods listing close; > ods output clear; > ods output FitSummary(match_all persist=proc) > =GARCHFitSumm(); > .... sas commands .... > > The trouble is that the results window fills up while this is running, > and looping many times means that system resources get consumed. > > I've looked at Tools>Options>Preferences and set the Results tabsheet > options to: > [clear] Create listing > [clear] Create HTML > [clear] view results as they are generated > [selected] Internal bowser > > Can anone suggest a setting I'm missing or a sas command I can issue? > > Thanks in advance > Mark > > -- > Mark Van De Vyver > Department of Accounting and Finance > University of Western Australia > > mailto:mvdv@bigfoot.com > http://www.bigfoot.com/~mvdv > > Sent via Deja.com http://www.deja.com/ > Before you buy. >

-- Mark Van De Vyver Department of Accounting and Finance University of Western Australia

mailto:mvdv@bigfoot.com http://www.bigfoot.com/~mvdv

Sent via Deja.com http://www.deja.com/ Before you buy.


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