activities
latest
false
- Overview
- Document Processing Contracts
- Release notes
- About the Document Processing Contracts
- Box Class
- IPersistedActivity interface
- PrettyBoxConverter Class
- IClassifierActivity Interface
- IClassifierCapabilitiesProvider Interface
- ClassifierDocumentType Class
- ClassifierResult Class
- ClassifierCodeActivity Class
- ClassifierNativeActivity Class
- ClassifierAsyncCodeActivity Class
- ClassifierDocumentTypeCapability Class
- ExtractorAsyncCodeActivity Class
- ExtractorCodeActivity Class
- ExtractorDocumentType Class
- ExtractorDocumentTypeCapabilities Class
- ExtractorFieldCapability Class
- ExtractorNativeActivity Class
- ExtractorResult Class
- ICapabilitiesProvider Interface
- IExtractorActivity Interface
- ExtractorPayload Class
- DocumentActionPriority Enum
- DocumentActionData Class
- DocumentActionStatus Enum
- DocumentActionType Enum
- DocumentClassificationActionData Class
- DocumentValidationActionData Class
- UserData Class
- Document Class
- DocumentSplittingResult Class
- DomExtensions Class
- Page Class
- PageSection Class
- Polygon Class
- PolygonConverter Class
- Metadata Class
- WordGroup Class
- Word Class
- ProcessingSource Enum
- ResultsTableCell Class
- ResultsTableValue Class
- ResultsTableColumnInfo Class
- ResultsTable Class
- Rotation Enum
- SectionType Enum
- WordGroupType Enum
- IDocumentTextProjection Interface
- ClassificationResult Class
- ExtractionResult Class
- ResultsDocument Class
- ResultsDocumentBounds Class
- ResultsDataPoint Class
- ResultsValue Class
- ResultsContentReference Class
- ResultsValueTokens Class
- ResultsDerivedField Class
- ResultsDataSource Enum
- ResultConstants Class
- SimpleFieldValue Class
- TableFieldValue Class
- DocumentGroup Class
- DocumentTaxonomy Class
- DocumentType Class
- Field Class
- FieldType Enum
- LanguageInfo Class
- MetadataEntry Class
- TextType Enum
- TypeField Class
- ITrackingActivity Interface
- ITrainableActivity Interface
- ITrainableClassifierActivity Interface
- ITrainableExtractorActivity Interface
- TrainableClassifierAsyncCodeActivity Class
- TrainableClassifierCodeActivity Class
- TrainableClassifierNativeActivity Class
- TrainableExtractorAsyncCodeActivity Class
- TrainableExtractorCodeActivity Class
- TrainableExtractorNativeActivity Class
- Document Understanding Digitizer
- Document Understanding ML
- Document Understanding OCR Local Server
- Document Understanding
- Release notes
- About the Document Understanding activity package
- Project compatibility
- Set PDF Password
- Merge PDFs
- Get PDF Page Count
- Extract PDF Text
- Extract PDF Images
- Extract PDF Page Range
- Extract Document Data
- Create Validation Task and Wait
- Wait for Validation Task and Resume
- Create Validation Task
- Classify Document
- Create Classification Validation Task
- Create Classification Validation Task and Wait
- Wait for Classification Validation Task and Resume
- Intelligent OCR
- Release notes
- About the IntelligentOCR activity package
- Project compatibility
- Configuring Authentication
- Load Taxonomy
- Digitize Document
- Classify Document Scope
- Keyword Based Classifier
- Document Understanding Project Classifier
- Intelligent Keyword Classifier
- Create Document Classification Action
- Wait For Document Classification Action And Resume
- Train Classifiers Scope
- Keyword Based Classifier Trainer
- Intelligent Keyword Classifier Trainer
- Data Extraction Scope
- Document Understanding Project Extractor
- RegEx Based Extractor
- Form Extractor
- Intelligent Form Extractor
- Present Validation Station
- Create Document Validation Action
- Wait For Document Validation Action And Resume
- Train Extractors Scope
- Export Extraction Results
- ML Services
- OCR
- OCR Contracts
- Release notes
- About the OCR Contracts
- Project compatibility
- IOCRActivity Interface
- OCRAsyncCodeActivity Class
- OCRCodeActivity Class
- OCRNativeActivity Class
- Character Class
- OCRResult Class
- Word Class
- FontStyles Enum
- OCRRotation Enum
- OCRCapabilities Class
- OCRScrapeBase Class
- OCRScrapeFactory Class
- ScrapeControlBase Class
- ScrapeEngineUsages Enum
- ScrapeEngineBase
- ScrapeEngineFactory Class
- ScrapeEngineProvider Class
- OmniPage
- PDF
- [Unlisted] Abbyy
- [Unlisted] Abbyy Embedded
Prepare Validation Station Data
Document Understanding Activities
Last updated Oct 29, 2024
Prepare Validation Station Data
UiPath.Abbyy.Activities.FlexiCapture.PrepareValidationStationData
Note: The UiPath.Abbyy.Activities package has been deprecated and is
currently out of support. Also, the package is unlisted from the UiPath Studio Manage
Packages official feed.
Check the Deprecation timeline for more details.
Extracts all the data required for the Validation Station wizard from an
FCDocument
variable and stores it into a ValidationStationData
variable. The extracted data contains the taxonomy, automatic extraction results, Document Object Model, and raw text of
the document contained in the FCDocument
variable. FCDocument
variables can be obtained by processing documents with the Process Document activity. This activity must be run inside an FlexiCapture Scope container.
Common
- DisplayName - The display name of the activity.
Input
- Document - The FlexiCapture Document you want to process, stored in an
FCDocument
variable. This datatype can be obtained from the Process Document activity. This field supports onlyFCDocument
variables.
Misc
- Private - If selected, the values of variables and arguments are no longer logged at Verbose level.
Output
-
ValidationStationData - All the data required to run the Validation Station extracted from the specified document, stored in a
ValidationStationData
variable. This field supports onlyValidationStationData
variables.Note: To use the variable from the ValidationStationData field in a Present Validation Station activity, the properties listed below must be used.AValidationStationData
variable contains four properties: - output.Taxonomy - exposes a taxonomy automatically built from the document definitions used in the Process Document activity
- output.Dom - exposes a Document Object Model built from the output variable of the Process Document activity.
- output.RawText - exposes the text version of the processed document
- output.ExtractionResults - exposes an
ExtractionResult
object populated with the data extracted by the FlexiCapture engine, and classified as a document type equal to the document definition that matched the processed document. It is mapped and built based on the taxonomy generated from the list of document definitions.
For example, to use a
ValidationStationData
variable called preparedData
in a DocumentObjectModel property field, it has to be written as preparedData.Dom
in the Expression Editor.
You can see how the Prepare Validation Station Data activity is used in an example that incorporates multiple activities.
You can check and download the example from here.