Checking if a document is a Replication or Save Conflict

Evaluate returns an Boolean array value in the example below based on the presence of the $Conflict field.
LotusScript


IsConflict = Evaluate("@IsAvailable($Conflict)", doc )

If IsConflict(0)  = True Then
	'Document is a conflict
Else
	'Document is not a conflict
End If

Posted by fbrefere001 on Monday March 25, 2002