ftos.utils.getSystemParameterByName
IMPORTANT!
Starting with v24.3.0, this is renamed from getSystemParameterByName to ftos.utils.getSystemParameterByName.
Starting with v24.3.0, this is renamed from getSystemParameterByName to ftos.utils.getSystemParameterByName.
Returns the value of a system parameter.
This method is suitable for all business service components modules.
Syntax
function ftos.utils.getSystemParameterByName(parameterName: string): string
| Parameter | Description |
|---|---|
parameterName
|
Name of the system parameter you wish to return. |
Return Value
Returns the value of the system parameter.
Examples
In this example, store the value of the MKT Campaign Maximum Control Group Size system parameter in a variable called grSize.
var grSize = ftos.utils.getSystemParameterByName('MKT Campaign Maximum Control Group Size');