Date: Fri, 15 Oct 1999 09:17:40 +0100
Reply-To: peter.crawford@DB.COM
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Peter Crawford <peter.crawford@DB.COM>
Subject: How find the value of SAS environment variable ?
Content-type: text/plain; charset=us-ascii
try
%let sasrooo = %sysget(sasroot);
%put (&sasrooo); ******* just one environment variable;
%let allenv = %sysfunc( getoption( set ));
%put (&allenv); ***** all environment variables ;
Datum: 14.10.99 22:22
An: SAS-L@listserv.uga.edu
Antwort an: ROGER.CALVEZ@wanadoo.fr
Betreff: How find the value of SAS environment variable ?
Nachrichtentext:
I look for the value of all environment variable in use during a SAS session
and I don't know how do that.
i.e.define by -set or set
Thank for an answer.
PS
data _null_;
%put _all_;
run;
is not a solution !
===============
Roger L. CALVEZ
=======================================