Maybe somebody knows how is linked a meeting (documment) with an rescheduled notice which are send after changing dates in meeting. I need do this in Lotus C API and C# api.
I need to check if after meeting was created did something change
Something like this
var document = UserDb.GetDocumentByUNID(uniqId);
if(document != null)
{开发者_JAVA技巧
var col1 = document.GetResched(...)
var col2 = document.GetInvit(...)
.....
}
Thanks
Marcin
The UniversalID of the meeting is saved in the ApptUNID item on the reschedule notice.
精彩评论