requestInfo (NotesCalendarEntry - JavaScript)

Requests information for a meeting entry.

Defined in

NotesCalendarEntry

Syntax

requestInfo(comments:string) : void
Parameter Description
comments Comments regarding a request.
Possible exception Value Text Description
NotesError.NOTES_ERR_INVALIDID 4757 Invalid ID The identifier for the NotesCalendarEntry object is not valid.
NotesError.NOTES_ERR_RECURID_NOTFOUND 4808 Recurrence-ID not found The recurrence identifier for the NotesCalendarEntry object is not valid.
NotesError.NOTES_ERR_IDNOTFOUND 4814 Identifier not found The recurrence identifier for the NotesCalendarEntry object does not identify an entry in the calendar, or the scope and recurid are missing for a recurring entry.

Usage

This method deals with meeting entries, not notices.

Examples

This button event requests information about a meeting.
var dbdir:NotesDbDirectory = session.getDbDirectory("");
var maildb:NotesDatabase = dbdir.openMailDatabase();
var cal:NotesCalendar = session.getCalendar(maildb);
var unid:string = sessionScope.unid;
var cale:NotesCalendarEntry = cal.getEntryByUNID(unid);
cale.requestInfo("Reconsidering");
requestScope.status = "Calendar entry for UNID " + unid + " info requested\n";

LotusScript® syntax and examples

NotesCalendarEntry.RequestInfo(Byval comments As String)

Java syntax and examples

void NotesCalendarEntry.requestInfo(String comments)