@advancedMessage::isCompleted

Checks the advanced message and determines whether all advanced message recipients have met their fill counts.

Syntax:

@advancedMessage::isCompleted()

Parameters:

None

Returns:

(Boolean) true if all Advanced Message recipients have met their fill counts, otherwise false

Example:

The following example is taken from the default scripts:

@advancedMsg = @event::advancedMessage()
  $isComplete = @advancedMsg::isCompleted()
  IF ($isComplete)
    $main.CONTINUE = true
  ENDIF