GetSystemParameterValue
This function will retrieve specified AMODIT system parameter value.
Syntax
GetSystemParameterValue("parameterName");
Function arguments
- parameterName – (String) The name of the parameter for which the value is to be retrieved
Return value
This function returns String.
Returns specified parameter value or empty string if there was an error.
Examples
Example 1:
This will get AMODIT system parameter named 'Parameter1′ value and store it in 'param’ variable.
param = GetSystemParameterValue("Parameter1");