success()

Initializes a front call answer object with SUCCESS status.

Syntax

(a FrontCallAnswer) success()
  1. a is the front call answer object to initialize.

Usage

You would call this method after a front call request. In case of success, the front call can return values using the ggc.FrontCallAnswer methods returnString() or returnInteger().

You must declare a variable of type ggc.FrontCallAnswer. For example:

DEFINE fcAnswer FrontCallAnswer
...
CALL fcAnswer.success()