Technote Number: 1143540
Problem:
This issue was reported to Quality Engineering and has been addressed in Notes
6.5.3.
Excerpt from the Lotus Notes and Domino Release 6.5.3 MR fix list (available at
http://www.ibm.com/developerworks/lotus):
Client UI
SPR# GFLY5MLKDU - Fixed a Client crash which occurred after switching from the
Location document to the Replication bookmark.
It may be possible to avoid this crash by deleting the field $SiteMapList from
the Location document. Note, however, that the side effects of removing this
field are unknown.
The script below, placed in the Personal Name and Address Book, can be used in
an agent designed to run on a Target of "None" or "All Selected Documents".
(NOTE: In cases where multiple documents are selected, the present version of
the code only modifies the first document selected.)
Dim s As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Dim item As NotesItem
Dim col As notesdocumentcollection
Set db=s.CurrentDatabase
Set col=db.unprocesseddocuments
Set doc=col.getfirstdocument
Set item = doc.GetFirstItem( "$SiteMapList" )
If Not item Is Nothing Then
Call item.Remove
Call doc.Save( False, True )
End If More >
|  |
|
|
|
|