- Notas relacionadas
- Primeros pasos
- Para administradores
- Proyectos de flujo de trabajo de RPA
- Crear un flujo de trabajo RPA a partir de una idea
- Creación de un proyecto
- Cómo iniciar un flujo de trabajo de RPA
- Gestionar archivos y carpetas de proyecto
- Conectar flujos de trabajo de RPA a tus cuentas
- Configurar actividades
- Gestionar las actividades de un proyecto
- Transferir valores entre actividades
- Iterar a través de los elementos
- Gestionar los datos en un proyecto
- Configurar un proyecto para usar tus datos
- Usar recursos de archivos y carpetas
- Proyectos de aplicación
- Aplicaciones en Studio Web
- Diseñar proyectos de aplicación
- Depuración de proyectos de aplicación
- Publicar, implementar y actualizar proyectos de aplicaciones
- Importar y exportar proyectos de aplicación
- Trabajar con entidades en un proyecto de aplicación
- Crear aplicaciones accesibles
- Añadir descriptores accesibles
- La etiqueta Accesible
- Uso del control Pestaña para la accesibilidad
- Diseñar listas y encabezados accesibles
- Diseño de aplicaciones receptivas
- Relación de contraste de color
- Estilos preestablecidos y asignaciones a nivel de aria para el control Encabezado
- Limitaciones conocidas
- Establecer un contexto externo utilizando parámetros de consulta
- Set an external context using external events
- Utilizar matrices para rellenar controles desplegables, desplegables de selección múltiple y botones de opción
- Utilizar controles tabulares con entidades de Data Service en proyectos de aplicación
- Actividades de la aplicación
- Procesos de agente
- Agentes
- Soluciones
- Flujos de trabajo de API: vista previa

Guía del usuario de Studio Web
No, solutions do not have a specific "type". A solution is simply a container that groups automations and related resources. The behavior of a solution is determined by the automations it contains. When you create a new solution, you select the automation type from which you will start building your solution.
- Define the automation in the solution by adding a new project of that specific type. You can thus fully control how the automation works.
- Import an existing project in your solution. This copies the project into the solution, so the original project remains unchanged and continues to exist independently.
- Reference a deployed process from the UiPath Platform. This copies the process definition from Orchestrator without including the source code. However, when you publish the solution, the underlying NuGet package is also included in the solution package.
You can import your existing projects into a solution. Importing does not change the original project, but creates a copy of it within the solution.
This error occurs when an automation in the solution attempts to start another automation. Let’s look at the following example featuring a solution with two projects —an agentic process (Maestro) that calls an assistant agent:
You start by debugging the agent first (the Deploy resources before debugging option in the Debug configuration window is disabled):
The agent runs successfully in debugging, as expected:
Next, you want to debug the agentic process that calls the agent (again, the Deploy resources before debugging option is disabled):
Unfortunately, an error appears in the agentic process. Why does this happen?
The error occurs because when you debug a project, it is not deployed anywhere. The project runs directly in a "Studio Web Debugging" job. In this case, since you debugged each project individually with the Deploy resources before debugging option disabled, neither project was ever deployed to any folder.
The Output panel offers this explanation:
- Enable the Deploy resources before debugging option in the Debug configuration window to deploy the latest resources to your personal workspace:
- Navigate to Debug > Deploy Project for Debugging. This will deploy all projects to your personal workspace so they can be referenced by other projects (such as the agentic process) during debugging.
You can then view these deployments in your debug solution folder in your personal workspace:
You can now see that the agentic process executes successfully after choosing one of the two options:
- Does it matter which "type" of solution I create?
- My business process requires an automation. What options do I have?
- I updated a process outside my solution. How do I update its definition in the solution?
- How do I migrate my existing projects to a solution?
- I get a "Failure to start the Orchestrator RPA job" error. What do I do?