- .NET (4)
- Administration (14)
- Allgemein (7)
- C# (4)
- CRM (1)
- MOSS 2007 (33)
- Office (2)
- Programming (5)
- Project-Server (3)
- Projektmanagement (5)
- SharePoint (46)
- SharePoint 2010 (11)
- Uncategorized (1)
- VB.NET (2)
- Web (8)
- WIN 2008 (3)
- Workflow (9)
- 23.1.2012: Datenimport-Überlegungen (MS-CRM)
- 20.12.2011: Vorhandene Projekte in Project Server hochladen
- 18.12.2011: Project-Server Pro und Contra
- 17.12.2011: Project-Server 2010 Project Web Application (PWA)
- 25.9.2011: Migration MOSS 2007 nach Sharepoint 2010 Schrittweise (Step by Step)
- 16.9.2011: Backup-Script (Powershell) für Sp2010 aller SiteCollections und Websites einer Web-Application
- 31.3.2011: Ändern der Sprache in der SharePoint Zentraladministration (2010/2007)
- 28.1.2011: Was ist neu in SharePoint 2010 Foundation (Serie) - Teil 3
- 25.1.2011: Was ist neu in SharePoint 2010 Foundation (Serie) - Teil 2
- 25.1.2011: Was ist neu in SharePoint 2010 Foundation (Serie) - Teil 1
SP-Designer Workflow, E-Mail an Gruppe - E-mail to multiple recepients
Workflows im SP-Designer erlauben leider nicht Listenfelder vom Typ Person/Gruppe mit Mehrfachauswahl als Empfänger von E-Mails zu verwenden, Sie wollen einen eindeutigen Empfänger haben. Hier ein kleiner Workaround unter Verwendung von dynanischen Zeichenfolgen…..
————————————-
SP-Designer workflows don’t like it to use list columns of type person/group with more than one single entry. Here is a workaround using dynanic strings…..
a SP-Designer workflow is used to send e-mails to more that one recepient at a time there is a little problem in creating this workflow activity. Especially if a listfield is used to refer to the e-mail recepient.
The SP-Designer allows only listfields configured for single entries. If you are using a list column configured for multiple entries for persons/users or groups these list column will not show up as e-mail recepients in the workflow wizzard.
The workaround:
- Create a workflow activity using build dynamic string (not sure if this is the correct term in english, but you know the thing with “dynamic” in it) and assing it to a variable.
- click on dynamic string an select the multiple persons column from your list or library
- Now you can use the variable created in your previous workflow activity to assing it as a e-mail recepient (use workflow lookup)
Problem solved.
——————————————————————————
Deutsch:
Wenn man in einem SP-DesignerWorkflow versucht eine E-Mail an mehrere Empfänger zu versenden und die Empfängeradressen aus einem Listenfeld generiert werden sollen, welches als Spaltentyp Person/Gruppe mit zugelassener Mherfachauswahl hat, so wird diese Listenspalte im Workflow-Designer nicht zur Auswahl angeboten.
Als Workaround:
- Erstellen Sie eine Workflow Aktivität “dynamische Zeichenfolge erstellen” und weisen Sie die dynamische Zeichenfolge einer Variablen zu
- Klicken Sie auf “dynamische Zeichenfolge” und wählen dann als Nachschlagevorgang die Listenspalte aus, in der die E-Mail Empfänger Personen enthalten sind
- Nun können Sie in der Aktität E-Mail versenden die Variable, die Sie vorher erstellt haben, als Empfängeradresse benutzen (Workflow-Nachschlagevorgang).
Problem gelöst.