- 基本情報
- デモ アプリ
- 使い方
- 通知
- VB の式を使用する
- アプリをデザインする
- Autopilot を使用してアプリをデザインする
- イベントとルール
- アプリで RPA を活用する
- アプリ内でエンティティを活用する
- アプリ内でエンティティを参照する
- エンティティを置換する
- チョイス セットを使用する
- ラベルにエンティティ フィールドの値を表示する
- Apps を Data Service と使用する
- アプリ内でキューを活用する
- アプリでメディアを活用する
- アプリでアクションを活用する
- アプリでコネクションを活用する
- Studio Web の Web アプリ
- アプリケーション ライフサイクル管理 (ALM)
- UiPath® ファーストパーティ アプリ
- 基本的なトラブルシューティング ガイド
Apps を Data Service と使用する
- A maximum of 1000 records for any filter are retrieved at runtime.
- After the entity data is loaded, the data is refreshed only when a rule is executed. Any changes made to the entity via processes, or other means, do not automatically update in Apps. Make sure to explicitly refresh the data in these scenarios.
- The
in
operator only supports primitive data types, such as:string
,number
,boolean
,null
.
in
演算子は、choice-set
を使用する Data Service シナリオではサポートされません。代わりに contains
演算子を使用できますが、1 つの入力に対してのみ使用できます。
この例を開始する前に、Data Service に対する適切な権限があることを確認してください。詳細については、『Data Service ガイド』の「アクセス権を管理する」をご覧ください。
For the purpose of this example, we will use an entity called Customer with the following fields:
- Address
- 住所 2
- 市町村
- メール
- 名前
- 電話番号
- プラン
- ステート
- 郵便番号
Use the Function: Fetch function to retrieve multiple entity records. Additionally, use the Query builder to filter the retrieved records. In this example, we apply a filter to the Customer entity, so the search only returns customers from the state of Washington.
Refer to The Fetch function for more details.
If you want to retrieve a single record, use the FetchOne function instead.
- Open an existing application, or create a new one.
- Add a Table control to your app:
- [コントロールを追加] を選択します。
- Select Display.
- Drag the Table control to an area in your app.
- Add an entity to your app:
- Select the Add any icon from the top of the canvas.
- [エンティティ] を選択します。
- Select a tenant.
- Select the entity you want to add to your app, then Add.
- Bind the entity to the Table control:
- Use the Expression editor to apply a filter under specific conditions:
When you preview or run the app, the query executes and retrieves the filtered records.
You can use the Edit Grid control to display entity records in your app, and perform CRUD operations on your entity using this control.
Refer to Using Fetch to retrieve entity records in Edit Grid controls and Using entities with Edit Grid controls for more details and practical examples related to the Edit Grid control.