This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
As it happens, we need to update a couple more fields to cover all the cases.
I used the following code:
Dim session As New NotesSession
Dim maildb As NotesDatabase
Dim ooopdoc As notesdocument
Set maildb = session.Getdatabase("server", "database.nsf", False)
Set ooopdoc = maildb.Getprofiledocument("outofofficeprofile")
' Blank out any fields which would normally contain the date
' DaysOut is the field usually used at the beginning of the message
Call ooopdoc.Replaceitemvalue("DaysOut", "")
' SpecialBody is the field used at the beginning of any "Exceptions" message
Call ooopdoc.Replaceitemvalue("SpecialBody", "")
' AppendSubjectDate is the field added to the end of the subject if you enable this option
Call ooopdoc.Replaceitemvalue("AppendSubjectDate", "")
Call ooopdoc.Save(False, False, False)
Feedback response number WEBB8FFEF4 created by ~Manny Quetvelusonettu on 03/30/2011