ReportConditions
Create, update, delete, and query report conditions.
テーブル固有の情報
Select
WHERE 句で任意の条件を使用して、Report Conditions テーブルをクエリできます。connector はSuiteCRM API を使用して結果をフィルタリングします。
SELECT * FROM [Report Conditions] WHERE [Logic] = 'Less than'
Insert
書き込み可能なカラムを指定して、Report Condition エントリを作成します。
INSERT INTO [Report Conditions] (Name, Logic, Operator, Value,[Report Id]) VALUES ('Comparison', 'Greater Than', '>', 410, 'reportIdR2')
Update
Id を指定して、書き込み可能なReport Condition エントリカラムを更新できます。
UPDATE [Report Conditions] SET Order = 1 WHERE Id = 'Test123'
Delete
Id を指定して、Report Condition エントリを削除します。
DELETE FROM [Report Conditions] WHERE Id = 10003
Columns
| Name | Type | ReadOnly | Description |
| ID [KEY] | String | False |
The unique identifier of the inbound. |
| CreatedById | String | True |
The Id of the user who created the record. |
| CreatedByName | String | True |
The name of the user who created the record. |
| DateCreated | Datetime | True |
The date the record was created. |
| DateModified | Datetime | True |
The date the record was last modified. |
| Deleted | Bool | False |
The record deletion indicator. |
| Description | String | False |
Description for the report condition |
| Field | String | False |
Module field to select for the condition |
| LBL_PARENTHESIS | String | False |
The id of the report condition to enclose in the parenthesis |
| Logic | String | False |
The logic operator to link to the next condition 使用できる値は次のとおりです。AND, OR |
| ModifiedById | String | True |
The Id of the user who last modified the record. |
| ModifiedByName | String | True |
The name of the user who last modified the record. |
| Module | String | False |
Which module to query in the condition |
| Name | String | False |
Name assigned to the condition |
| Operator | String | False |
The operator to test against the value, such as 'Equal to', 'Less than' |
| Order | Int | False |
Defines the order in which the condition will be resolved |
| Parameter | Bool | False |
Whether to treat the condition as a parameter |
| ReportId | String | False |
The report Id that the condition will apply to |
| Type | String | False |
What type of value to compare against |
| Value | String | False |
Value to use for comparison |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| Rows@Next | String |
Identifier for the next page of results. Do not set this value manually. |