The notes replication entry is saved when the administrator uses the routine below. For a normal user with Author rights in the ACL this routine does not save the entry.
' get replication entry and update settings
Set re = rep.GetEntry("-", nam.Abbreviated, False)
' check if replication entry already exists
If re Is Nothing Then
Set re = rep.GetEntry("-", nam.Abbreviated, True)
Call re.Save
End If
' set replication settings
re.IsIncludeACL = True
re.IsIncludeAgents = True
re.IsIncludeDocuments = True
re.IsIncludeForms = True
re.IsIncludeFormulas = True
re.Formula = portalFormula
rc = re.Save
The result code for the save entry is: -1
Is the notes replication entry for a normal user read-only? However, it can be changed by using the replication options via the menu in Lotus Notes.
I found that when the user has Manager access in the ACL it works. When the user hasn’t than it does not save.
Is anything wrong here, or is there a different solution for this matter?