Und IBM sagt dazu:
You are using the German language version of the "Team Room (7)" template
(teamrm7.ntf) and a German language Mail database design. When you click
the "Gruppenkalendar ertellen" hotspot, after filling in the dialog
prompts, you receive the following error:
"Notes error: Möchten Sie die Ausgewählten Lesezeichenordner und deren
Inhalte wirklich entfernen ((Group Calendars))"
The translation of this error is:
"Notes error: Are you sure you want to remove the selected bookmark
folders and their contents? ((Group Calendar))"
Steps to Reproduce
Note: In order to reproduce this issue you must be using a German language
version of the Team Room (7) database and mail database.
In an existing Team Room database with at least one group:
1. In navigator expand Optionen für Leiter u. Assistenten.
2. Select TeamRoom Konfiguration aktualisieren.
3. Select Team-Mitglieder.
4. Click the hotspot Gruppenkalendar erstellen.
This issue occurs because the code behind the "Gruppenkalendar erstellen"
hotspot refers to the mail database folder "(Gruppenkalender)" by it's
English name "(Group Calendars)" rather than by the alias name
"(GroupCalendarFolder)", which is shared by all language versions.
If the fixed template is not available then this issue can be fixed in the
problemmatic teamroom template and or database by updating the code in the
"Gruppenkalendar erstellen" hotspot so that it correctly refers to the
alias name:
1. Open the database or template in Domino Designer.
2. Open the form: TeamRoom Konfiguration
3. In the tabbed table, select the tab: Particpants
4. Select the hotspot: Gruppenkalendar erstellen
5. The second to last line of the LotusScript code needs to be revised
From:
Call grpDoc.PutInFolder("(Group Calendars)", False)
To:
Call grpDoc.PutInFolder("(GroupCalendarFolder)", False)
6. Save the form.
Gruß
-Peko