FrontCallAnswer
The FrontCallAnswer type defines a record for retrieving the result of a front call.
Syntax
TYPE FrontCallAnswer RECORD
type STRING,
status STRING,
errorMessage STRING,
returnValues DYNAMIC ARRAY OF RECORD
isNull BOOLEAN,
value STRING,
index INTEGER,
dataType STRING
END RECORD
END RECORD
typeis the name of the front call type-
statusis an error status string errorMessageholds details of an error message- The
returnValuesarray holds the list of the function's return values:isNullif set, a null value is allowedvalueholds the return valueindexholds the index positiondataTypeis the data type of the return value
Usage
It provides an API to inspect a front call answer; typically the module, and the function status,
error type, and return values. A variable of the type FrontCallAnswer must be
defined, for example:
DEFINE fcAnswer FrontCallAnswer
...
CALL fcAnswer.moduleNotFound()