ProcessManagementActions
Lists the workflow actions available within a process, helping you analyze or document the transition paths defined in an app's workflow.
Select
The AppId column is required in the WHERE clause. The connector will use the Kintone APIs to filter the results by this column. By default, the connector will process other filters client-side within the connector.
For example, the following queries are processed server side:
SELECT * FROM ProcessManagementActions WHERE AppId = 6 SELECT * FROM ProcessManagementActions WHERE AppId = 6 AND Lang = 'en' SELECT * FROM ProcessManagementActions WHERE AppId = 6 AND IsPreview = false
Columns
| Name | Type | References | Description |
| AppId | Integer | Identifier of the Kintone app whose process-management action settings are being retrieved. | |
| Name | String | Name of the workflow action, representing the transition users can apply to move a record between statuses. | |
| From | String | Name of the current workflow status from which the action can be performed. | |
| To | String | Name of the workflow status that the record is moved to when the action is executed. | |
| FilterCond | String | Condition expressed in query-string format that determines whether the action is available based on record data. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description | |
| Lang | String | Locale code used to retrieve process-management action details in a specific language. | |
| IsPreview | Boolean | Indicates whether to retrieve process-management action details from the preview environment ('true') or from the live environment ('false'). The default value is 'true'. |