getParameterValue()

Returns the parameter values to the front call.

Syntax

(r FrontCallRequest) getParameterValue(
  index INTEGER)
  RETURNS STRING
  1. r is the front call request object.
  2. 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)