ProcessManagementActions
Query the Process Management Actions in kintone.
Select
The AppId column is required in the WHERE clause. The add-in will use the Kintone APIs to filter the results by this column. By default, the add-in will process other filters client-side within the add-in.
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 | The App ID of the kintone application. | |
Name | String | The Action name. | |
From | String | The status before taking action. | |
To | String | The status after taking action. | |
FilterCond | String | The branch criteria of the action. |
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 | The localized language to retrieve the data. | |
IsPreview | Boolean | By setting this to False, you will be able to retrieve the Process Management Actions details of the live App. Default value is true. |