UiPath Documentation
document-understanding
2024.10
false
Wichtig :
Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.
UiPath logo, featuring letters U and I in white

Document Understanding user guide

Letzte Aktualisierung 6. Apr. 2026

Extrahieren von Daten aus Belegen

Wichtig:

The aim of this page is to help first time users get familiar with UiPath® Document UnderstandingTM.

For scalable production deployments, we strongly recommend using the Document Understanding Process available in UiPath® Studio under the Templates section.

This quickstart shows you how to extract data from receipts using the out-of-the-box Receipts ML model with its corresponding public endpoint.

Die Validierung kann entweder durch Präsentieren der Validation Station oder mithilfe der Validation Action im Action Center erfolgen. Beide Optionen werden in den folgenden Abschnitten beschrieben.

Verwenden des ML-Modells „Receipts“ mit „Öffentlicher Endpunkt“ und Validation Station

In diesem Abschnitt validieren wir die Extraktionsergebnisse mithilfe der Validation Station.

To create a basic workflow using the Receipts ML Model, use the following steps:

  1. Einen leeren Prozess erstellen
  2. Die erforderlichen Aktivitätspakete installieren
  3. Taxonomie erstellen
  4. Das Dokument digitalisieren
  5. Die Daten mit dem ML-Modell für Belege (Receipts) extrahieren
  6. Die Ergebnisse mithilfe der Validation Station validieren
  7. Die Extraktionsergebnisse exportieren

1. Einen leeren Prozess erstellen

  • Starten Sie UiPath Studio.
  • In the HOME backstage view, select Process to create a new project.
  • Das Fenster Neuer leerer Prozess wird angezeigt. Geben Sie in diesem Fenster einen Namen für das neue Projekt ein. Wenn Sie möchten, können Sie auch eine Beschreibung eingeben, um Ihre Projekte einfacher auffindbar zu machen.
  • Select Create. The new project is opened in Studio.

2. Die erforderlichen Aktivitätspakete installieren

From the Manage Packages button in the ribbon, besides the core activities packages (UiPath.Excel.Activities, UiPath.Mail.Activities, UiPath.System.Activities, UiPath.UIAutomation.Activities) that are added to the project by default, install the following activities packages:

3. Taxonomie erstellen

Once the activities packages are installed, list out the required fields. The Receipts ML model supports data extraction for the following fields:

  • name (Name) – Text
  • vendor-addr (Lieferantenadresse) – Adresse
  • total (gesamt) – Zahl
  • date (Datum) – Datum
  • phone (Telefonnummer) – Text
  • currency (Währung) – Text
  • expense-type (Ausgabentyp) – Text
  • items (Posten) – Tabelle
    • description (Beschreibung) – Text
    • line-amount (Zeilensumme) – Zahl
    • unit-price (Stückpreis) – Zahl
    • quantity (Menge) – Zahl

Open Taxonomy Manager and create a group named Semi Structured Documents, a category named Finance, and a document type named Receipts. Create the listed fields with user friendly names along with respective data types.

Screenshot zur Beschreibung des Taxonomienanagers

4. Das Dokument digitalisieren

  • In the Main.xaml file, add a Load Taxonomy activity and create a variable for the taxonomy output.
  • Add a Digitize Document activity with UiPath Document OCR. Provide the input property Document Path and create output variables for Document Text and Document Object Model.
  • Denken Sie daran, den API-Schlüssel von Document Understanding in der Aktivität „UiPath Document OCR“ hinzuzufügen.

5. Die Daten mit dem ML-Modell für Belege (Receipts) extrahieren

  • Add a Data Extraction Scope activity and fill in the properties.
  • Drag and drop a Machine Learning Extractor activity. A pop-up with three input parameters, Endpoint, ML Skill, and ApiKey, is displayed on the screen.
  • Fill in the Endpoint parameter with the Receipts Public Endpoint, namely https://du.uipath.com/ie/receipts, and provide the Document Understanding API key.
  • Select Get Capabilities.
  • The next step is to configure the extractor. Configuring the extractor means mapping the fields that you created in Taxonomy Manager to the fields available in the ML model.

Screenshot zur Beschreibung des Dialogfelds „Extraktor konfigurieren“.

  • Um den Machine Learning Extractor mit einer ML-Fähigkeit zu verwenden, wählen Sie die ML-Fähigkeit aus der Dropdownliste aus und konfigurieren Sie den Extraktor.
  • Ihr Roboter-Assistent muss mit demselben Mandanten wie Ihre ML-Fähigkeit verbunden sein.

Screenshot zur Beschreibung des Dialogfelds Machine Learning Extractor, Auswahlliste ML-Fähigkeiten.

6. Die Ergebnisse mithilfe der Validation Station validieren

To check the results through Validation Station, drag and drop the Present Validation Station activity and provide the input details.

Screenshot zur Beschreibung der Aktivität „Present Validation Station“.

7. Die Extraktionsergebnisse exportieren

To export the extraction results, drag and drop an Export Extraction Results activity to the end of your workflow. This outputs the results into a DataSet that contains multiple tables, which could then be written to an Excel file or be used directly in a downstream process.

Screenshot zur Beschreibung der Aktivität „Export Extraction Results“.

Beispiel herunterladen

Download this sample project using this link.

Das Beispiel enthält zwei Workflows:

  • Main.xaml - in this workflow, the extraction results are validated using Validation Station
  • Main – Unattended.xaml – In diesem Workflow werden die Extraktionsergebnisse mithilfe der Validation Action validiert; dies wird im folgenden Abschnitt beschrieben

Verwenden des ML-Modells „Receipts“ mit „Öffentlicher Endpunkt“ und Validation Action

Auf dieser Seite finden Sie weitere Informationen dazu, wie Sie eine Validierungsaktion des Action Center durchführen können, anstatt die Validation Station zu verwenden.

Wie funktionieren Aufgaben im Action Center?

Wenn eine Automatisierung Entscheidungen wie Genehmigungen, Eskalationen und Ausnahmen enthält, die ein Mensch treffen sollte, kann der Prozess dank UiPath Action Center einfach vom Roboter zum Menschen übergeben werden (und wieder zurück).

Document Understanding-Action Center-Aktivitäten sind im Paket UiPath.IntelligentOCR.Activities und UiPath.Persistance.Activities enthalten. Vergessen Sie nicht, Persistenz-Aktivitäten in den allgemeinen Einstellungen in UiPath Studio zu aktivieren:

Screenshot zur Beschreibung der Oberfläche „Projekteinstellungen“ mit der hervorgehobenen Umschalttaste „Unterstützt Persistenz“.

Wie funktioniert die Validation Action?

Die Produktivität kann durch Hinzufügen eines Orchestrierungsprozesses erhöht werden, der Dokumentvalidierungsaktionen im Action Center sowohl im lokalen Orchestrator als auch der Automation Cloud hinzufügt. Diese Aktion reduziert Ihren Bedarf an der lokalen Speicherung der Dokumente, dem Installieren eines Roboters auf allen Maschinen mit menschlichen Benutzern oder dem Warten des Roboters, bis die Validierung durch menschliche Benutzer abgeschlossen ist.

More details here.

Wie wird die Validation Action verwendet?

Wiederholen Sie die Schritte 1 bis 5 im vorherigen Abschnitt.

Then, instead of using the Present Validation Station activity, use the Create Document Validation Action and Wait for Document Validation Action and Resume activities.

Screenshot zur Beschreibung der Aktivität „Create Document Validation“.

This creates a document validation action in Action Center. The output of the Create Document Validation Action activity can then be used with the Wait for Document Validation Action and Resume activity to suspend and resume orchestration workflows upon human action completion in Action Center.

War diese Seite hilfreich?

Verbinden

Benötigen Sie Hilfe? Support

Möchten Sie lernen? UiPath Academy

Haben Sie Fragen? UiPath-Forum

Auf dem neuesten Stand bleiben