Type | Read/write | Author | Availability |
Read | FINBOURNE | Provided with LUSID |
Providing you have sufficient access control permissions, the Workflow.Task.Field
provider enables you to write a Luminesce SQL query that retrieves one or more fields and their current values for tasks from the Workflow Service.
See also: Workflow.Task, Workflow.Task.Writer
Basic usage
Query parameters
Workflow.Task.Field
has parameters that enable you to filter or refine a query.
To list available parameters, their data types, default values, and an explanation for each, run the following query using a suitable tool:
Data fields
By default, Workflow.Task.Field
returns a table of data populated with particular fields (columns). You can return a subset of these fields.
To list fields available to return, their data types, whether fields are considered 'main', and an explanation for each, run the following query using a suitable tool:
Note: Fields marked 'main' are returned by queries that select a caret character, for example
select ^ from Workflow.Task.Field
.
Examples
Note: For more example Luminesce SQL queries, visit our Github repo.
Example 1: Retrieve all fields and their values for a particular task
Example 2: Retrieve all tasks with a particular field value
In this example, Workflow.Task.Field
is used to retrieve any data approval tasks that are currently assigned to a particular person.
Example 3: Create a notification for a particular field value
In this example, Workflow.Task.Field
is used to retrieve some data to approve from a particular task. The field value is then passed into Notification.ManualEvent.Writer to trigger a notification that some new data needs approving.