apps
latest
false
- 基本情報
- デモ アプリ
- 使い方
- 通知
- VB の式を使用する
- 概要
- 制限事項
- 式エディター
- Using the Fetch functions
- レガシ アプリを VB の式に移行する
- レガシ式と VB の式
- 便利な VB 関数
- カスタムの VB 関数
- ボンネットの下
- アプリをデザインする
- Autopilot を使用してアプリをデザインする
- イベントとルール
- アプリで RPA を活用する
- アプリ内でエンティティを活用する
- アプリ内でキューを活用する
- アプリでメディアを活用する
- アプリでアクションを活用する
- アプリでコネクションを活用する
- Studio Web の Web アプリ
- アプリケーション ライフサイクル管理 (ALM)
- UiPath® ファーストパーティ アプリ
- 基本的なトラブルシューティング ガイド
Using the Fetch functions
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
Apps ユーザー ガイド
Last updated 2024年11月15日
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.
- [編集グリッド] コントロールをアプリに追加します。
- [コントロールを追加] を選択します。
- 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:
- [コントロールを追加] を選択します。
- 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.