Skip To Content

Hinzufügen und Konfigurieren des Schrittes "Auftrag erstellen"

Durch das Erstellen von Aufträgen im Rahmen eines Workflows können Sie komplexe Routine-Workflows besser skalieren und verwalten, sodass sie leichter zu verstehen und abzuschließen sind. Mit dem Schritt "Auftrag erstellen" können Sie automatisch Abhängigkeiten generieren und Parent-Child-Beziehungen zwischen Aufträgen herstellen, um sicherzustellen, dass alle Teile Ihres Geschäftsprozesses erhalten bleiben und berücksichtigt werden.

Wenn der Schritt ausgeführt wird, wird aus der Auftragsvorlage, die in dem Schritt konfiguriert wird, ein neuer Auftrag erstellt, und zwischen dem neuen Auftrag und dem aktuellen Auftrag wird je nach Konfiguration des Schrittes eine Beziehung hergestellt. Wenn zu dem Schritt ein Hilfetext konfiguriert wurde, wird er unten auf der Auftragskachel angezeigt.

Konfigurieren des Schrittes

To configure the step, do the following:

  1. Create or edit a workflow diagram to access the Step Library panel.
  2. Ziehen Sie Auftrag erstellen aus dem Fenster Schrittbibliothek auf den Verbindungspfeil eines Schrittes auf der Workflow-Zeichenfläche.

    The Step Details panel appears.

  3. Provide a name for the step in the Step Name text box.
  4. Klicken Sie auf den Dropdown-Pfeil Auftragstyp, und wählen Sie einen Auftragstyp aus, der dem Auftragstyp entspricht, den Sie erstellen möchten.
  5. Optional aktivieren Sie das Kontrollkästchen Als untergeordneten Auftrag erstellen, damit alle erstellten Aufträge zu untergeordneten Aufträgen des aktiven Auftrags werden.
  6. Sie können auch das Kontrollkästchen Als Abhängigkeit erstellen aktivieren, damit alle erstellten Aufträge zu Abhängigkeiten des aktiven Auftrags werden.

    Alle Auftragsabhängigkeiten müssen abgeschlossen sein, bevor der nächste Schritt in dem aktuellen Auftrag abgeschlossen werden kann.

  7. Click the Options tab.
  8. Configure Step Options as necessary.
    • Manual—Run the step manually.
      • Optional—Allow the step to be finished without being run.
    • Automatic—Run the step as soon as it becomes active.
      Hinweis:

      If your workflow diagram is configured to automatically run a sequence of steps that includes the Evaluate Data Quality or the Run GP Service step, steps that attempt to run after the user token that started the sequence of steps expires will not run automatically. You must have a license for the ArcGIS Workflow Manager Server Advanced role to continue running the additional automated steps without manual intervention.

    • Run on a Schedule—Run the step according to a schedule you set.

      Learn more about scheduling options

  9. Optionally, provide help text for the step in the Step Help text box.

    You can also use the following example to display a dynamic value using ArcGIS Arcade expressions:

    'For further assistance, please contact ' + jobCreator($job) + '.'
  10. Optionally, click the Style tab to change the shape and color of the step.
  11. Optionally, click the About tab and provide a description for the step in the Step Description text box.
    Hinweis:

    The About tab also contains the step's ID that can be used with dynamic job properties to obtain a step's output.

Return value

When the step is completed, its return value is stored to indicate the result of the step. The return value can be immediately evaluated using paths to determine the next steps in the workflow. You can also retrieve the return value for completed steps throughout the workflow using ArcGIS Arcade expressions. The following table lists the step's return values:

Return valuesDescription

S000001

The step completed successfully.

F000001

The step failed to complete successfully.

Ausgabewert

When the step is completed, its output value is stored and can be used to determine the path the workflow follows or be used as inputs for other steps throughout the workflow. The following table shows the step's output value:

AusgabeBeschreibungSyntax für ArcGIS Arcade-Ausdruck

<JobID>

Gibt die JobID des erstellten Auftrags zurück.

jobOutputValue($job, '<step_id>')

Verwandte Themen