getParameterValue()
Returns the parameter values to the front call.
Syntax
(r FrontCallRequest) getParameterValue(
index INTEGER)
RETURNS STRING
- r is the front call request object.
- index is the parameter index.
Usage
A call to this method returns the parameter value at the given index. You must declare a variable
of type ggc.FrontCallRequest
. For example:
DEFINE fcRequest FrontCallRequest
DEFINE value STRING
...
LET value = fcRequest.getParameterValue(1)