Prints the supplied parameters to the client log. This action is generally used for debugging or verifying that parameters are correctly passed to the server.
| Parameter | Description |
|---|---|
| ... | Accepts any number of user-defined parameters (name=value pairs). These parameters and their values will be printed to the client log. |
Prints a string and a number to the SAS log.
| 1 | |
| 2 | PROC CAS; |
| 3 | BUILTINS.echo / message="Hello World" value=42; |
| 4 | RUN; |
| 5 |
Demonstrates passing a list variable to the echo action to verify its structure in the log.
| 1 | PROC CAS; |
| 2 | myList = {a=1, b=2, c=3}; |
| 3 | BUILTINS.echo / DATA=myList; |
| 4 | RUN; |
A financial institution runs credit risk simulations daily. To comply with strict regulatory audit trails (Basel III), the system must explicitly log the configuration parameter...
A Customer Support Analytics team processes extremely long chat transcripts for sentiment analysis. They suspect that the CAS server might be truncating input parameters larger ...
An ETL pipeline handles raw retail data which often contains missing values (nulls) and inconsistent data types (strings mixed with numbers). A developer is debugging a failure ...