- Introduction
- Démarrage
- Créer avec Maestro BPMN
- Compréhension de la modélisation BPMN de Maestro
- Ouverture du canevas de modélisation
- Modéliser votre processus
- Alignement et connexion des éléments BPMN
- Autopilot pour Maestro (aperçu)
- Référentiel de processus
- Implémenter un processus BPMN simple
- Implémenter un processus BPMN complexe
- Débogage
- Simulation
- Evaluations (Preview)
- Scénarios de mise en œuvre courants
- Building with Maestro Case
- Présentation de Maestro Case
- Maestro BPMN vs. Maestro Case : quand utiliser la gestion des incidents
- Le cycle de vie de Maestro Case : du déclencheur d'événement à l'expérience de l'application
- Créer votre premier incident avec Maestro Case
- Build a Maestro Case with a coding agent (preview)
- Définition des clés de cas (système vs. externe)
- Établissement des contrats d'E/S et de réécriture de la tâche
- Règles de sortie et fin de l’étape précoce
- Modélisation des étapes primaires et secondaires
- Déclencher un cas à partir de Data Fabric
- Implémentation des personas et des autorisations au niveau de l'étape
- Définition des SLA et des règles d'escalade automatisées
- Configuration d'une boucle de retraitement (renouvellement)
- Configuring and testing the Case Manager Agent (preview)
- Contrat d’entrée et de sortie du gestionnaire de cas
- Dictionnaire des composants de Maestro Case
- Créer avec Maestro Flow
- Qu'est-ce que Flow?
- Votre premier flux
- Flux dans VS Code
- Entities in VS Code
- Intégrations
- Opérations
- Surveillance
- Optimisation
- Informations de référence
Model a Data Fabric entity in VS Code alongside your flows, then consume it from the built-in Data Fabric nodes.
This is a Preview capability.
Data Fabric's integration with Flow in VS Code has two parts:
- A new Data Fabric Entity project type for UiPath solutions — the same way Maestro BPMN and Maestro Flow are project types. VS Code is the first canvas to support it. Support for Studio Desktop and Studio Web is planned for a later release. Model an entity's schema without leaving VS Code, then consume it from your flows.
- Four new native nodes — Query entity records, Create entity record, Update entity record, and Delete entity record — for consuming entities from a flow. These are native Flow nodes, not Integration Service (IS) connector activities: they don't require an IS connection, and their output is a live-reference variable to the affected record, except Delete entity record, which doesn't produce one. For node details, refer to Data Fabric entity nodes.
For Flow GA, entity projects are scoped to native (folder) entities only. Federated entities, tenant entities, and extending an existing entity's schema aren't supported yet.
In the project type selector, Data Fabric Entity appears alongside the Flow project types.
Create an entity project
To create an entity project:
-
In the Solution Explorer title bar, select Create New Project, then choose Data Fabric. The command is also available from the Command Palette as UiPath: Create New Project.
-
Select + Add field.
-
For each field, set a Display name, Name, and Type, and optionally mark it Required or Unique. For the available types, refer to Supported field types.
-
Save the entity.
Result: VS Code creates a .entity file for the project. Opening it in a text editor shows its underlying JSON.
A solution that contains only an entity project (no Flow project) can be packaged, but deploying it fails today — Studio Web doesn't yet support deploying an entity-only project, so your solution needs at least one Flow project before you deploy.
Types de champs pris en charge
| Saisie de texte | Boutiques |
|---|---|
| Texte | A single line of text. |
| Numérique | A numeric value, with optional decimal places and minimum and maximum bounds. |
| Yes-No | A true or false value. |
| Date | A calendar date. |
| Date-Heure | A date and a time. |
| Numérotation automatique | A number the platform increments for each new record, from a starting value you set. |
| Texte multiligne | Text across multiple lines. |
| Multi-line (Max) | Multi-line text with the largest size the platform allows. |
Limites connues
An entity created in VS Code can't be edited in Studio Web. You can import and open a solution containing a Flow project and a Data Fabric entity project in Studio Web, but Studio Web can't make changes to the entity itself. Editing an entity's schema is only possible in VS Code.
An entity isn't listed in a connector-based Data Fabric activity. Entities created inside a VS Code solution don't appear in the entity picker of existing Integration Service (IS) connector-based Data Fabric activities. For Flow GA, these entities can only be read, created, updated, or deleted using the built-in entity nodes. Support for consuming them through connector-based activities is planned for a release after Flow GA.
Commandes
Run these from the Command Palette, or from the Solution Explorer as noted.
| Commande | Ce qu’il fait |
|---|---|
| UiPath: Create New Project | Creates the entity project. Choose Data Fabric when prompted for the project type. Also in the Solution Explorer title bar. |
| UiPath: New File | Adds a file to a project. Choose Entity File to add an entity. Also in the Solution Explorer title bar. |
| UiPath: Add Entity File | Adds another entity to an existing entity project. Appears only once the solution has one, and is also on the right-click menu of an entity project. |
Entity creation has no default keyboard shortcut. For the extension's full command list, refer to Flow in VS Code.