TIA
Jens Wagner
Already solved?
--
Wolfgang Flamme
wfl...@mainz-online.de
"I love deadlines. I love the whooshing sound they make as
they fly by."
Douglas Adams
W.Flamme wrote:
>
> Already solved?
>
No, the problem is still remaining...
Jens Wagner
Calendar view display criteria:
SELECT @IsAvailable(CalendarDateTime)
Meeting view display criteria:
SELECT Form = "Appointment":"Notice" | @AllDescendants
So appointment documents have been created but there is no
item 'CalendarDateTime' in them for reasons I don't know. You
might do a cross check by having a look at the properties of
such a document.
Instance document problem:
This is caused by the QueryDocumentDelete event in the
Database Script preventing inconsistencies eg with response
structures. The error message looks like there are response
documents missing their parent. The easiest thing to gain full
control over deletions is to comment out the code temporarily
(Domino Designer required and - as usual - have a backup
available):
Sub Querydocumentdelete(Source As Notesuidatabase, Continue As
Variant)
%Rem
'former code goes here
%End Rem
End Sub
Then you should be able to delete all appointments.
Be sure not to leave any orphan appointment response documents
in there (the ones with Form="Appointment" and an item named
$REF in them). Be sure every left over appointment has an item
Repeats="", indicating it's single instance only and it's not
'expecting' to have any responses. You might create temporary
views to check for that.
And just don't forget to undo your changes in the
QueryDocumentDelete event.
Brett
Jens Wagner <jens....@seiko-instruments.nospam.de> wrote in message news:<3C4E9808...@seiko-instruments.nospam.de>...