Hi there,
there are about 2 errors in that version:
1) Reject notification is not send:
Solution:
In the Workflow library append the following line to
Function reject(vStage As String)
-> Call addRecipient(recipient)
so that the end shows:
'set the body text to rejected...
Call addbody("This document has been rejected")
Call addSubject("Request Rejected by: " & Me.owner)
Call addRecipient(recipient)
End Function
2) Error opening document
There is an error calculating the correct unique key if you are not using the american date format. Go to the the codebin library:
Function CreateIDNum(uidoc As NotesUIDocument) As String
change the following line and append the else block:
If InStr(str_now,"/") Then
delim = "/"
Else
delim = "."
End If
Mario