/AWS1/CL_WKRSETTING¶
Represents a single network-level configuration setting with its name, value, and data type. Settings control network-wide behaviors and features.
CONSTRUCTOR¶
IMPORTING¶
Required arguments:¶
iv_optionname TYPE /AWS1/WKRGENERICSTRING /AWS1/WKRGENERICSTRING¶
The name of the network setting (e.g., 'enableClientMetrics', 'dataRetention').
iv_value TYPE /AWS1/WKRGENERICSTRING /AWS1/WKRGENERICSTRING¶
The current value of the setting as a string. Boolean values are represented as 'true' or 'false'.
iv_type TYPE /AWS1/WKRGENERICSTRING /AWS1/WKRGENERICSTRING¶
The data type of the setting value (e.g., 'boolean', 'string', 'number').
Queryable Attributes¶
optionName¶
The name of the network setting (e.g., 'enableClientMetrics', 'dataRetention').
Accessible with the following methods¶
| Method | Description |
|---|---|
GET_OPTIONNAME() |
Getter for OPTIONNAME, with configurable default |
ASK_OPTIONNAME() |
Getter for OPTIONNAME w/ exceptions if field has no value |
HAS_OPTIONNAME() |
Determine if OPTIONNAME has a value |
value¶
The current value of the setting as a string. Boolean values are represented as 'true' or 'false'.
Accessible with the following methods¶
| Method | Description |
|---|---|
GET_VALUE() |
Getter for VALUE, with configurable default |
ASK_VALUE() |
Getter for VALUE w/ exceptions if field has no value |
HAS_VALUE() |
Determine if VALUE has a value |
type¶
The data type of the setting value (e.g., 'boolean', 'string', 'number').
Accessible with the following methods¶
| Method | Description |
|---|---|
GET_TYPE() |
Getter for TYPE, with configurable default |
ASK_TYPE() |
Getter for TYPE w/ exceptions if field has no value |
HAS_TYPE() |
Determine if TYPE has a value |
Public Local Types In This Class¶
Internal table types, representing arrays and maps of this class, are defined as local types:
TT_SETTINGSLIST¶
TYPES TT_SETTINGSLIST TYPE STANDARD TABLE OF REF TO /AWS1/CL_WKRSETTING WITH DEFAULT KEY
.