Date: Tue, 29 Jul 2008 10:33:55 -0400
Reply-To: Randy Herbison <RandyHerbison@WESTAT.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Randy Herbison <RandyHerbison@WESTAT.COM>
Subject: FW: SAS/AF: Get List of all SCL Variables
Content-Type: text/plain; charset="us-ascii"
A little more info about the Static Analyzer:
You can click on a row/variable on the Variables tab to see more info
about the variable including length, storage, and line number. Click on
the details display to see the actual code.
The variables data is in the Static Analyzer data set named sclstat7.
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
Randy Herbison
Sent: Tuesday, July 29, 2008 9:51 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: Re: SAS/AF: Get List of all SCL Variables
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