- Einleitung
- Erste Schritte
- Prozessmodellierung mit BPMN
- Grundlagen der Prozessmodellierung
- Öffnen der Modellierungsarbeitsfläche
- Modellierung Ihres Prozesses
- Ausrichten und Verbinden von BPMN-Elementen
- Autopilot for Maestro (Vorschau)
- Prozess-Repository
- Prozessmodellierung mit Fallverwaltung
- Entwerfen eines persistenten Schemas für eine Fallentität
- Definieren von Fallschlüsseln (system vs. extern)
- Festlegung von Aufgaben-E/A und Write-Back-Vereinbarungen
- Austrittsregeln und Frühphasenbeendigung
- Modellierung von primären und sekundären Phasen
- Auslösen eines Falls über Data Fabric
- Implementieren von Personen und Berechtigungen auf Phasenebene
- Festlegen von SLAs und Regeln für die automatisierte Eskalation
- Konfigurieren einer Nachbearbeitungsschleife (erneuter Eintritt)
- Verwalten von Live-Fallinstanzen: Anhalten, migrieren und wiederholen
- Wörterbuch für die Fallverwaltungskomponente von Maestro
- Process modeling with Flow
- Erste Schritte
- Kernkonzepte
- Node reference
- Built-in nodes
- Connector nodes
- Build guides
- Best Practices
- Referenz (Reference)
- Prozessimplementierung
- Debugging
- Simulieren
- Veröffentlichen und Aktualisieren von agentischen Prozessen
- Häufige Implementierungsszenarien
- Extraktieren und Validieren von Dokumenten
- Prozessabläufe
- Prozessüberwachung
- Prozessoptimierung
- Referenzinformationen
Benutzerhandbuch zu Maestro
Dieser Leitfaden umfasst Folgendes:
A trigger defines how a process starts. Every process requires at least one trigger, and new processes include a Manual Trigger by default.
Triggertypen
Flow supports the following trigger types:
| Typ | Beschreibung | Use case |
|---|---|---|
| Manual Trigger | Starts the process on demand when you select Debug | Testing, debugging, and ad-hoc execution |
| Scheduled Trigger | Runs the process on a recurring schedule, defined as an interval or a cron expression | Periodic data syncs, daily reports, recurring cleanup tasks |
| Connector-based triggers | Starts the process when an event occurs in an Integration Service connector (for example, new email received or form submitted) | Event-driven automation that reacts to external systems in real time |
Trigger placement
Triggers are added from the node palette in the bottom toolbar. You can't add a trigger from a node's output handle.
After a trigger is added, it appears on the canvas as a circular node. Its output handle connects to the first node in the process to complete the entry point.
Every trigger must connect to at least one downstream node. Flow displays a warning if a trigger has no outgoing connection.
Trigger inputs
Input variables are owned by their trigger, not by the process. Each trigger defines its own set of inputs, and those inputs are only populated when that specific trigger fires.
To reference a trigger's input in a downstream node, use the syntax:
$vars.<triggerName>.output.<inputName>
$vars.<triggerName>.output.<inputName>
For example, if a Manual Trigger named manualTrigger1 defines an input called userId:
$vars.manualTrigger1.output.userId
$vars.manualTrigger1.output.userId
Trigger inputs are configured from the Variables panel. Each input belongs under the trigger that owns it and has its own name and type.
After an input is defined, it appears under that trigger in the Variables panel and is accessible downstream as $vars.<triggerName>.output.<inputName>.
Refer to Variables and data flow for more on expression syntax and how data moves between nodes.
Multiple triggers
A process can have more than one trigger. Each trigger acts as a separate entry point. When any trigger fires, it starts an independent execution of the process.
This is useful when the same logic needs to run in response to different events. For example, a process might have both a Scheduled Trigger for nightly batch runs and a connector-based trigger that reacts to incoming requests during the day.
Each trigger owns its own inputs. Downstream nodes reference the specific trigger that started the current execution. If your process has a Manual Trigger named manualTrigger1 and a Scheduled Trigger named scheduledTrigger1, each has its own $vars.<triggerName>.output namespace.
Zugehörige Seiten
- Variables and data flow — expression syntax, node output, trigger input references
- The Canvas — node palette, properties panel, bottom toolbar
- Error handling — handling failures in nodes downstream of a trigger