flow

Generate a flow diagram of input and output of SAS programs based on SAS log

%flow (log = SAS log file,
              output
= html flow diagram);

WhereIs Type...And represents...
logC (40 chars)The name of the SAS log including the path.  If the path is specified without the file, all SAS log in the path will be captured.
outputC (200 chars)Name of the html  file created.  If none is specified, a file named flow.html is created in the current directory.

Details
This tool generates an html flow diagram based on the SAS log.  It will display a diagram capturing all SAS input and output documented in the SAS log.

If both the log file and output file specifications were left blank, an interactive dialog box will be displayed for selection.

The current path is displayed by default but the button next to the path can be clicked.  In that case, a dialog box will open to prompt the user to select for a path similar to a file open dialog box.  The output HTML file can also be selected and will be saved in the same directory as the path.

One or more log files can be selected.  Once the OK button is clicked, the flow diagram will be generated for all the selected log files.

Example

%flow (log = demog.log, output = demog_flow.html);

%flow (log = c:\temp\demog.log, output = demog_flow.html);

%flow (log = c:\myprogram);

*** Interactive Dialog Selection ***;

%flow; 

 
    Definedoc - DEFINE.XML Software,  Meta-Xceed Inc.© 2009
Bookmark and Share