HiMy OS server date has been changed by mistake to a future date (January was replaced by February)
I updated my OS server date but the problem is that @modified function shows the wrong date (February 22nd instead of January 25th) in view columns
I tried compacting, fixing up and signing again my database but @modified still show the wrong date
Any advice to fix this issue?
Subject: wrong modified date
We had some similar problems in 1999 due to a very “hard” year 2000 test …The problem is, that even if you set the date back, documents won’t replicate because the “newer” mod-date of february. This wi e fixed when the real date reach that date …
We fixed the problem in 1999 by finding someone who provides us with an API-Tool to manipulate thoose ModifiedFields.
Subject: RE: wrong modified date
Thanks for you reply.So, I may have to developpe a specific api developpement !!!
Does Notes release 6 or newer contain any @function or lotuscript method that can change the lastmodified document property?
Subject: RE: wrong modified date
Anything that touches a document should result in the last modified date to be updated with the correct time.
One way to do this efficiently may be through
Call notesViewEntryCollection.StampAll(itemname$ , value)
It’s usually only useful if you really want to add one item to all documents in the NotesViewEntryCollection, but in your case you might really want to add an additional item to indicate, if the document in question has already been updated.