Hallo Forum,
meine Euphorie war etwas zu laut. Die Funktion klappt bestens nur dass ich neben dem Eintrag als Reminder auch noch einen Eintrag als Mail Draft erhalte, was von mir nicht gewünscht ist.
Hat jemand eine Idee woran das liegt?
Hier der betreffende Code-Ausschnitt:
Set taskdoc = New NotesDocument(maildb)
taskdoc.Form = "Appointment"
taskdoc.appointmenttype = "4"
taskdoc.ReplaceItemValue "$Alarm", 1
taskdoc.ReplaceItemValue "$AlarmMemoOptions", "2"
taskdoc.ReplaceItemValue "$AlarmSendTo", UName
taskdoc.ReplaceItemValue "$AlarmDescription", subject
taskdoc.ReplaceItemValue "$AlarmSound", "Defsound"
taskdoc.ReplaceItemValue "ViewIcon", "67"
taskdoc.Alarms= "1"
taskdoc.Principal = UName
taskdoc.StartDateTime = Cdat(duedate)
taskdoc.StartDate = Cdat(duedate)
taskdoc.StartTime=Cdat(duedate)
taskdoc.EndDate=Cdat(duedate)
taskdoc.Endtime=Cdat(duedate)
taskdoc.EndDateTime=Cdat(duedate)
taskdoc.CalendarDateTime=Cdat(duedate)
taskdoc.Subject = "Action Item Reminder"
Set rtitem = taskdoc.CreateRichTextItem("Body")
Call rtitem.AddNewLine(2)
Call rtitem.AppendText("Action Item No. " & aino & " has a Due Date for Today")
Call rtitem.AddNewLine(2)
Call rtitem.AppendText("Use Link to Action Item in SupportLineTool - Database --> ")
Call rtitem.AppendDocLink(doc, "Document Link")
Call taskdoc.ComputeWithForm(True, True)
Call taskdoc.Save(True,True)
Alexis