...
Chapter10.scpwork: Does NOT include WORK-references in the automated documentation
...
Settings and options for Engrafo SAS Analyzer
Headers in the Data Catalog
...
"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 and can be utilized for 3)
LibnamesTuUse. This Table holds any mapping you like between the physical references and the logic names you chose. e.g
WORKStandard;W:\SASWORK\TD15948_DKSPAS111
(This replaces W:\SASWORK\TD15948_DKSPAS111 with WORKStandard in the Data catalog)