Checks whether a recipient contributes to a separate fill count.
@advancedMessageReport::hasFillCount(String recipient)
(String) recipient: the target name of the recipient to check
(Boolean) true if the recipient has a separate fill count, otherwise false
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