...
"Database": "SAS Database",
"Schema": "SAS Data Catalog",
"Table": "SAS Datasets",
“Column": "Variable",
},
Specific settings for the SAS Analyzer module
In appsettings.json there are the following settings
"SASAnalyzerSettings": {
"FileExcludes": {
"FileInput": ".sas, .pdf, .png, .jpg",
"FileOutput": ".sas, .pdf, .png, .jpg, .source, .index"
},
"Index": {
"Index": "true"
},
"Model": {
"Physical": "false"
}
References to external files
...
You can exclude index-references in the generated SAS Flowcharts. This can be done by setting the parameter “Index” to true or false
Index : {
"Index": "true",
},
Use physical model
In SAS programs Libnames are defined by a logic name pointing to a physical path, e.g.
libname LibnameToData “p:\SASdata”
"Model": {
"Physical": "false"
}
If you want to use physical references instead of logic, set Physical to true.
If you are using the physical model you also have the option to replace physical references with a logic name that you chose. The can be done in the mapping table in:
LibnamesMappings holds any wanted replacements. This can be useful if you have different environments having physical references pointing to the same directory but with different syntax, e.g.
Linux: //ffss/SASHelp
Windows \\mslib\SAShelp
LibnamesFromParsing
This table holds al the physical mappings to libnames from analyzed SAS scaproc logs
LibnamesTuUse