@advancedMessageReport::hasFillCount

Checks whether a recipient contributes to a separate fill count.

Syntax:

@advancedMessageReport::hasFillCount(String recipient)

Parameters:

(String) recipient: the target name of the recipient to check

Returns:

(Boolean) true if the recipient has a separate fill count, otherwise false

Example:

FOR($Recipient : $advancedMsg.recipients)

  $hasFillCount = @summary::hasFillCount($Recipient)

  IF($hasFillCount)

    $operationRequiredFillCount = @summary::getRequiredFillCount($Recipient)

    $operationCurrentFillCount = @summary::getCurrentFillCount($Recipient)

    $content.message::add($Recipient & " | " & $operationRequiredFillCount & " | " & $operationCurrentFillCount & "\n")

  ENDIF

ENDFOR