- Primeros pasos
- Aplicaciones de demostración
- Tutorial
- Build your first app (old)
- Crear una aplicación optimizada para dispositivos móviles
- Directrices generales sobre la experiencia del usuario
- Utilizar la vista maestra detallada
- Uso del visor de documentos
- Utiliza Recuento con valores de conjunto de opciones
- Usar valores seleccionados de una tabla
- Insertar aplicaciones
- Insertar mapas
- Ocultar contenedores mediante un botón
- Incluir enlaces MailTo
- Incluir la clasificación por estrellas
- Establecer contexto externo
- Trabajo con origen de datos y enlace de valor
- Uso de la actividad de envío de resultado provisional
- Aplicaciones públicas
- Notificaciones
- Cómo utilizar expresiones VB
- Diseñar tu aplicación
- Eventos y reglas
- Regla: Si-Entonces-Si no
- Regla: abrir una página
- Regla: Abrir URL
- Norma: cerrar ventana emergente/inferior
- Regla: mostrar mensaje
- Regla: mostrar/ocultar indicador giratorio
- Regla: establecer valores
- Regla: iniciar el proceso
- Regla: subir el archivo al depósito de almacenamiento
- Regla: obtener el archivo del depósito de almacenamiento
- Regla: restablece los valores
- Regla: crear/actualizar registro de entidad
- Norma: elimina el registro de entidad
- Regla: añadir a la cola
- Función: Y, O, No
- Función: Concat
- Función: Contiene
- Función: Recuento
- Función: TerminaEn
- Función: Si
- Función: EstáEnBlanco
- Función: Guid
- Función: Longitud
- Función: Lista
- Función: ComienzaPor
- Función: suma
- Función: ordenar
- Función: ahora
- Función: hoy
- Función: Tiempo
- Función: Año
- Función: Mes
- Función: Día
- Función: Hora
- Función: Minuto
- Función: nueva
- Función: buscar
- Función: filtro
- Aprovechamiento de RPA en tu App
- Aprovechamiento de las entidades en tu App
- Aprovechar las colas en tu aplicación
- Aprovechar los medios en tu aplicación
- Aprovechar las acciones en tu aplicación
- Aprovechar las conexiones en tus aplicaciones
- Gestión del ciclo de vida de las aplicaciones (ALM)
- Aplicaciones de origen de Uipath
- Guía básica de resolución de problemas

Legacy Apps user guide
Please find below a list containing the input and output argument types supported when adding a process to an app.
Supported Type |
.NET type |
Description |
Limitation (If any) |
---|---|---|---|
Text |
Text | ||
Number (Integer, Double, Float, Decimal) |
Integer/Floating point Numeric type & Decimal value | ||
Boolean |
True/False | ||
DateTime |
Date and time |
Customers should always use UTC or include a DateTimeOffset | |
Supported Type[](List) |
Array of supported types . For example array of text or numbers | ||
List <ST> (List) |
List of supported types. | ||
IList <ST> (List) |
Iterable list of supported types. |
- Data without timezone information should be treated as UTC.
- Data with timezone information will be displayed to the end-user in their browser’s timezone.
If a data type is not explicitly supported, the following logic is applied:
- If the datatype ends with “[]”, it is an array.
- If the datatype came back as “null”, it is interpreted as “anything” by Apps
- If the datatype is neither "[]" nor "null", it is interpreted as an “object”
For any .NET type variable not supported by Apps in its out of the box format, the Job history can be used to infer with the DataType, At least 1 job that matches the current version of the process is needed. Keep in mind that this type of auto-detection is not always precise. Please verify them on the UiPath Process properties page and change them if needed.
Supported Inference Type (SIT) |
.NET type |
Description |
---|---|---|
DataTable |
The Tabular Data field detection inference is based and may not identify types correctly, even if they are Supported Types. | |
SIT[](List) |
List of supported inference types. | |
UiPath Generic |
Common default type in Studio. | |
Object |
A generic Object |
Object fields such as DataTable > DataColumn also use inference based detection, even when those fields are Supported Types. This may lead to unpredictability, so you can manually specify fields for DataTable and other Objects within App Studio.
DataTable: Only the data from a DataTable can be used within an app. Field Constraints, Expression Columns, and Primary Keys are not supported.
Supported Type (ST) |
.Net Type |
Description |
---|---|---|
TimeSpan |
A time interval | |
IEnumerable |
Iterable list of Choices. Treated same as Enum/ChoiceSet | |
ChoiceSet |
List of Choices |
- The process payload size limit between Robot Service and Robot Executor is 10 MB.
- The entire process arguments of a single process cannot exceed 10 MB.