Hi,We have this LN client
Release 8.5.2 M2
Revision 20100331.1812-M2 (Build V852_M2_03302010)
Standard Configuration
and during this code which is called from private view(action button)
Set rtitem = docB.GetFirstItem( “Body” )
Call rtitem.AppendText( “Please check these documents->” )
Call rtitem.AddNewLine( 1 )
Set doc = collection.GetFirstDocument()
While Not ( doc Is Nothing )
Call rtitem.AppendDocLink( doc, db.Title ) ‘*******Error on this line’
Call rtitem.AddTab( 1 )
Call rtitem.AppendText( doc.Subject( 0 ) )
Call rtitem.AddNewLine( 1 )
Set doc = collection.GetNextDocument(doc)
Wend
we have this error:
"Notes error: Invalid or nonexistent document()
But this error appears only in case server replica is used, on local replica it is OK.
The same code is also called from shared view without problems.
In case user is using 8.5.1 or earlier version of LN client everything is OK. (tested on 8.5.1, 8.5.0 and 7.0)
Please does anybody have any idea what can cause this problem? Any solution how to avoid this error?
Thank you for your effort.