configuration

listServOpts

Description

Displays the server options and their current values. This action is particularly useful for administrators and users to verify the server's configuration state without needing to access server logs or configuration files directly. It provides a comprehensive snapshot of all configurable properties.

proc cas; configuration.listServOpts; run;

Examples

This example calls the `listServOpts` action to display a table of all server configuration options and their current values. It's a straightforward way to audit the server's live configuration.

SAS® / CAS Code Code awaiting community validation
Copied!
1PROC CAS;
2 configuration.listServOpts;
3RUN;
Result :
The action returns a result table named 'listServOpts'. This table contains columns such as 'name', 'value', 'scope', 'source', 'type', and 'description' for each server option, providing a complete overview of the server's settings.

FAQ

What is the purpose of the listServOpts action?
What is the basic CASL syntax for the listServOpts action?
Does the listServOpts action require any parameters?