I’ve some code like this:
Set item =DOC1.ReplaceItemValue(“Field_Name”,“”)
C =DOC1.Save(True, False)
Is there a way to change the content of a field without updating the last updated stamp?
stephan
I’ve some code like this:
Set item =DOC1.ReplaceItemValue(“Field_Name”,“”)
C =DOC1.Save(True, False)
Is there a way to change the content of a field without updating the last updated stamp?
stephan
Subject: Saving without timestamp?
Nope.
I am guessing that you are trying to use the $Updatedby to see “who” last updated the record using the database’s forms. If that’s the case, you should do that using a separate field that you add to the form, and update in post-save.
The $Updatedby and $Revisions will always be updated when a record is saved, either by a user, or by an agent.