- Getting Started
- Before You Begin
- How To
- Notifications
- Using VB Expressions
- Designing your App
- Events and Rules
- Rule: If-Then-Else
- Rule: Open a Page
- Rule: Open URL
- Rule: Close Pop-Over/Bottom Sheet
- Rule: Log Message
- Rule: Show Message
- Rule: Show/Hide Spinner
- Rule: Set Value
- Rule: Start Process
- Rule: Reset Values
- Rule: Upload File to Storage Bucket
- Rule: Download File From Storage Bucket
- Rule: Create Entity Record
- Rule: Update Entity Record
- Rule: Delete Entity Record
- Rule: Add to Queue
- Rule: Trigger workflow
- Leveraging RPA in your App
- Leveraging Entities in Your App
- Leveraging Queues in Your App
- Application Lifecycle Management (ALM)
- Basic Troubleshooting Guide

Apps User Guide
Using Apps With Data Service
linkBackground information
link- 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
operator is not supported in Data Service scenarios using choice-set
. You can use the contains
operator instead, but only for one input.
Overview
linkBefore starting this example, make sure that you have the proper permissions from Data Service. For more information, check the Data Service - Managing Access page.
For the purpose of this example, we will use an entity called Customer with the following fields:
- Address
- Address 2
- City
- Name
- Phone
- Plan
- State
- Postal Code
Filter Customer by State
linkUse 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 Add control.
- 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 Entity.
- Select a tenant.
- Select the entity you want to add to your app, then Add.
- Select the Add any
- Bind the entity to the Table control:
- In the General tab of the Properties panel, select the Additional resources button adjacent to Data source.
- Select Query builder.
- Select the entity you want to use, then Add condition.
- Select a field from the dropdown menu, then an operator, such as
=
. - Enter the string by which you want to filter the records, surrounded by quotation marks.For example, if you only want customer records from the state of Washington, add
"WA"
as a value.
- Use the Expression editor to apply a filter under specific conditions:
- In the Query builder, select the Open resources button, then Expression editor.
- Write an expression containing a condition. For example, you can use an IF condition to only apply a filter when a Dropdown control on the main page of the app is not blank and contains a user-specified value:
Fetch(of Customer)( If( MainPage.Dropdown is Nothing, Nothing, createFilterGroup(New QueryFilter(){addFilter("State", "contains", MainPage.Dropdown.Value)}, Nothing, 0)), Nothing, Nothing, Nothing, New ExpansionFieldOption( {addExpansionFieldOption("CreatedBy", New String(){"Id","Name"}), addExpansionFieldOption("UpdatedBy", New String(){"Id","Name"})})
Fetch(of Customer)( If( MainPage.Dropdown is Nothing, Nothing, createFilterGroup(New QueryFilter(){addFilter("State", "contains", MainPage.Dropdown.Value)}, Nothing, 0)), Nothing, Nothing, Nothing, New ExpansionFieldOption( {addExpansionFieldOption("CreatedBy", New String(){"Id","Name"}), addExpansionFieldOption("UpdatedBy", New String(){"Id","Name"})})
When you preview or run the app, the query executes and retrieves the filtered records.
Sort Customers
linkUse the Query builder to apply sorting options to your search.
- Open an existing application, or create a new one.
- Add a Table control to your app:
- Select Add control.
- 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 Entity.
- Select a tenant.
- Select the entity you want to add to your app, then Add.
- Select the Add any
- Bind the entity to the Table and apply a sorting rule:
- In the General tab of the Properties panel, select the Additional resources button adjacent to Data source.
- Select Query builder.
- Select Additional settings.
- In the Sort by field, add the field by which you want to sort, such as Name.
- The Sort ascending field is set to true by default. Select the field, then enter False to sort the results in descending order.
- Preview or run your app.
When you preview or run your app, the Table displays records from the Name field in your entity, in alphabetically descending order.
Using entities with Edit Grid
linkYou 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.