ProcessManagementActions
Lists the workflow actions available within a process, helping you analyze or document the transition paths defined in an app's workflow.
Select
WHERE 句ではAppId カラムが必須です。connector はKintone API を使用してこのカラムによる結果をフィルタリングします。デフォルトでは、connector はクライアント側でconnector 内で他のフィルタを処理します。
例えば、次のクエリはサーバー側で処理されます。
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
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるデータを詳細に制御することができます。
| 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'. |