Detecting replication/save conflicts

Insert the code below to determine if the specified document is a replication/save conflict
LotusScript


IsConflict = Evaluate("@IsAvailable($Conflict)", doc )
		
If IsConflict(0) Then
	'skip this doc
	Print "CONFLICT"
Else
	'process this doc
	Print "no conflict"
End If

Posted by fbrefere001 on Tuesday July 2, 2002