- Release notes
- Getting started
- For administrators
- RPA workflow projects- Creating an RPA workflow from an idea
- Creating a project
- How to start an RPA workflow
- Managing project files and folders
- Connecting RPA workflows to your accounts
- Configuring activities
- Managing the activities in a project
- Passing values between activities
- Iterating through items
- Managing the data in a project
- Configuring a project to use your data
- Using file and folder resources
 
 
- App projects- Apps in Studio Web
- Designing app projects
- Debugging app projects
- Publishing, deploying, and upgrading app projects
- Importing and exporting app projects
- Using a text prompt to generate an app
- Using a PDF or image to generate an app
- Generating VB expressions using a text prompt
 
- Working with entities in an app project
- Known limitations
 
- App activities
 
- Agentic processes
- Agents
- Solutions
- API workflows - Preview

Studio Web User Guide
To generate VB expressions using text prompts, your tenant must have sufficient Autopilot actions available.
To generate VB expressions using a text prompt in Autopilot, follow these steps:
When you write a text prompt describing the VB expression you want to add, Autopilot writes the generated VB expression and makes it available for use in the Expression editor text field.
Here are a few examples of useful prompts and their use cases.
| Apps controls | Intended functionality | Text prompt examples | 
|---|---|---|
| Input controls | Disables a Submit button if a field is empty. | "If username and password are empty set to true" | 
| App variables | Enables a button if an app variable called "item list" has a length greater than 10. | "If item list length is greater than 10" | 
| Custom objects | Prints a personalized welcome message. | "Concatenate "Welcome" with current user displayname and email id" | 
| Media | Renders a media file you have added to the app. | Simply write the file name: "image_01" | 
| Process | Completes a message with a value from a process. | "Concatenate user billing total amount" | 
| Process and app variables (sorting and filtering) | Assigns a value from a process data table to an app variable data table. | "Sort  process users.datatableby rating in descending order and filter where name contains john" | 
| Custom function (string addition) | Adds a string to a list called "itemlist". | "Add  firstnametoitemlist" | 
| Query parameters | Fetches runtime parameters given to the app in the form of a string. In this case, the time zone and region of a user. | "Concatenate apps timezone and region query parameters" |