Date: Tue, 4 Jun 2002 04:49:56 -0400
Reply-To: Gerhard Hellriegel <ghellrieg@T-ONLINE.DE>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Gerhard Hellriegel <ghellrieg@T-ONLINE.DE>
Subject: Re: Little problem with audit trail
On Tue, 4 Jun 2002 00:51:01 -0700, Xavier Autret <xav_x@NOOS.FR> wrote:
>I wan t to prevent display of a warning message in the log.
>
>*-- Code generating WARNING --*;
>data toto(alter=toto);
> set SASHELP.RETAIL;
>run;
>
>proc datasets library=work nolist;
> audit toto(alter=toto);
> initiate;
>quit;
>
>proc sort data=toto out=titi;
> by SALES;
>run;
>
>==>Generate in the Log:
>WARNING: Input data set has an AUDIT file associated with it. AUDIT
>files will not be copied.
>
>I already try :
>proc sort data=toto(type=data) out=titi;
> by SALES;
>run;
>
>which doesn t work.
>
>any idea?
>
>Xavier
Why you want to supress that? Ok, if you don't want to see any warnings,
notes, ..., use options nonotes;
However, if you want to audit also titi, you have to attach a audit file
via proc datasets also to titi.
|