Date: Tue, 29 Jul 2008 09:51:29 -0400
Reply-To: Randy Herbison <RandyHerbison@WESTAT.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Randy Herbison <RandyHerbison@WESTAT.COM>
Subject: Re: SAS/AF: Get List of all SCL Variables
In-Reply-To: <200807290339.m6SKbwLc020632@malibu.cc.uga.edu>
Content-Type: text/plain; charset="us-ascii"
Paul,
The Static Analyzer will display a list of frame entry variables
(including type and frequency).
To use the Static Analyzer, first collect data about the application:
proc build batch;
crossref project=work.new.test.frame
outlib=work;
run;
Then run the command:
SCLPROF STATIC lib=work
Select the View Data button on the Static Analyzer window and then the
Variables tab.
-Randy
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
Paul Walker
Sent: Monday, July 28, 2008 11:39 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: Re: SAS/AF: Get List of all SCL Variables
>Would this help?:
>http://www.devenezia.com/downloads/sas/af/index.php?topic=16
This looks like a nifty tool for visualizing SCL lists. Which list
would you suggest that I plug into it for getting an overview of all the
SCL variables used in my frame?
- Paul