apps
latest
false
- Démarrage
- Applications de démonstration
- Comment
- Accéder à l'URL de production d'une application
- Créer une application compatible avec les appareils mobiles
- Intégrer des applications
- Intégrer des cartes
- Définir un contexte externe (Set External Context)
- Utiliser des tableaux pour remplir les commandes Liste déroulante, Liste déroulante à sélection multiple et Bouton radio
- Utiliser TableDonnées avec les commandes Table et Modifier la grille
- Utiliser le masque de saisie
- Notifications
- Utilisation d'expressions VB
- Concevoir votre application
- Présentation des commandes
- Mise en page et style
- Exemples de mises en page d'applications
- Panneau Ressources (Resources)
- Exportation et importation de pages
- Références du contexte de l'utilisateur
- Applications publiques
- Enregistrer votre application
- Erreurs d’application et résolution des problèmes
- Concevoir votre application avec le Autopilot
- Événements et règles
- Règle : If-Then-Else
- Règle : ouvrir une page
- Règle : Ouvrir l'URL
- Règle : Fermer le Pop-Over/la feuille du bas
- Règle : Afficher le message
- Règle : Afficher/Masquer la roulette
- Règle : Définir une valeur (Set Value)
- Règle : Démarrer le processus
- Règle : Réinitialiser les valeurs
- Règle : Charger le fichier dans le compartiment de stockage
- Règle : Télécharger un fichier depuis un compartiment de stockage (Download File From Storage Bucket)
- Règle : Créer un enregistrement d'entité (Create Entity Record)
- Règle : Mettre à jour un enregistrement d'entité (Update Entity Record)
- Règle : Supprimer un enregistrement d’entité
- Règle : ajouter à la file d'attente (Add to Queue)
- Règle : Déclencher un workflow
- Règle : Soumettre l'action
- Tirer parti de la RPA dans votre application
- Exploitation des entités de votre application
- Exploitation des entités de votre application
- Exploitation des médias de votre application
- Exploitation des actions de votre application
- Exploitation des connexions de vos applications
- Applications Web dans Studio Web
- Gestion du cycle de vie des applications (Application lifecycle management, ALM)
- Applications propriétaires UiPath®
- Guide de dépannage de base
Using the Fetch functions
Important :
Veuillez noter que ce contenu a été localisé en partie à l’aide de la traduction automatique.
Guide de l'utilisateur d'Apps
Last updated 15 nov. 2024
Using the Fetch functions
The following are two examples of how to apply the Fetch and FetchOne functions in practice.
Use the Fetch function to retrieve all entity records from a Data Service entity, in conjunction with a tabular control such as Edit Grid.
- Add an entity to your app:
- Select Add any.
- Select Entity.
- Select a tenant.
- Select the entity you want to add to your app, then Add.
- Ajoutez une commande Modifier la grille ( Edit Grid ) à votre application :
- Sélectionnez Ajouter une commande (Add control).
- Select Display.
- Select Edit Grid, and drag it to an area in your app.
- Bind the Edit Grid control to your entity:
- In the Properties panel, on the General tab, select the Additional resources button adjacent to Data source.
- Select Query builder.
- Select the entity you want to use, then Save. The system automatically prepares a
Fetch
VB expression.
- Preview or run your app.
When you preview your app, the Edit Grid control is populated with all of the records from your entity.
Use the FetchOne function to retrieve a single record from a Data Service entity and use it in display controls, such as the Label control, in your apps.
- Add an entity to your app:
- Select Add any.
- Select Entity.
- Select a tenant.
- Select the entity you want to add to your app, then Add.
- Add a Label to your app:
- Sélectionnez Ajouter une commande (Add control).
- Select Display.
- Select Label, and drag it to an area in your app.
- Add a variable to your app:
- Select Add any.
- Select Variable.
- Give your variable a name.
- Under Type, select your entity, then Save.
- Add a rule to the main page of your app:
- Select the main page of your app.
- In the Properties panel, select Events.
- Under Loaded, select Create rule.
- Bind the rule to your variable:
- Select Set value.
- Under Item to set, select the variable you added in step 3.
- Select Value, then Query builder.
- Select your entity, then Save. The system automatically prepares a
Fetch
VB expression. - Under Value, select the expression, then replace
Fetch
withFetchOne
.
- Bind the Label to the variable:
- Preview or run your app.
When you run the app, the Label is automatically populated with a single record from the entity field you specified.