LotusScript Agent stopped working after server upgrade from 7.0.3 to 8.5 (via 8.0)Error reported: Object variable not set
Script was re-saved with 8.0.1 Designer to include some additional prints to locate the offensive code. I found that I have to change Notes View Navigator from GetNextDocument to GetNext
’ Set ssasnve2 = ssasnvn.GetNextDocument(ssasnve1) ’ was working in 7.0.x
Set ssasnve2 = ssasnvn.GetNext(ssasnve1) ’ works in 8.5
Set ssasdoc = ssasnve2.Document
where ssasnve1 is a category, and ssasnve2 is a document
Hope it will help someone to troubleshoot scripts.
Regards,
Vladimir