Published on :
Configuration CREATION_INTERNE

Initial Configuration Variables Definition

This code is also available in: Deutsch Español Français
The code initializes four macro variables. `VIYA_4` is defined for compatibility with Viya 3.x. `CAS_SERVER_HOST` and `CAS_SERVER_PORT` are placeholders for Cloud Analytic Services (CAS) server connection information, requiring manual update. Finally, `LOCAL_DATA_DIR` is a placeholder for the path to a local data directory. These variables are intended to be used by subsequent SAS© scripts to establish connections and locate resources but do not directly perform any CAS operations or data manipulation in this script.
Data Analysis

Type : CREATION_INTERNE


No data is processed or read in this script. It is solely the definition of configuration variables that could potentially be used to access external or internal data sources in subsequent scripts.

1 Code Block
MACRO STATEMENT
Explanation :
This block defines four global macro variables. `VIYA_4` is a flag to enable a specific compatibility mode. `CAS_SERVER_HOST` and `CAS_SERVER_PORT` are essential parameters for connecting to a CAS server, allowing its address and port to be identified. `LOCAL_DATA_DIR` specifies a path to a local directory where data could be stored or read. These variables must be adjusted by the user to match their specific environment.
Copied!
1%let VIYA_4=0; /* set to 0 for Viya 3.x compatability mode */
2%let CAS_SERVER_HOST=server.host.name; /* set to your CAS server hostname */
3%let CAS_SERVER_PORT=11111; /* set to your CAS server port */
4%let LOCAL_DATA_DIR=/path/to/downloaded/DATA/; /* set to your data directory */
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.