Projects
Create, update, delete, and query projects registered in SuiteCRM
テーブル固有の情報
Select
WHERE 句で任意の条件を使用して、Projects テーブルをクエリできます。connector はSuiteCRM API を使用して結果をフィルタリングします。
SELECT * FROM Projects WHERE [End Date] > '2017-10-09'
Insert
書き込み可能なカラムを指定して、Project を作成します。
INSERT INTO Projects (Name, Status, Priority) VALUES ('New projects', 'Draft', 'High')
Update
Id を指定して、書き込み可能なProject カラムを更新できます。
UPDATE Projects SET Status = 'Underway' WHERE Id = 'Test123'
Delete
Id を指定して、Project を削除します。
DELETE FROM Projects WHERE Id = 10003
Columns
| Name | Type | ReadOnly | Description |
| Id [KEY] | String | False |
The unique identifier of the project. |
| Address | String | True |
Address from Google Maps of the project. |
| AssignedTo | String | False |
The user name of the user assigned to the record. |
| ConsiderWorkingDays | Bool | False |
Whether to include business hours in the project duration. |
| 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 |
Project description. |
| EndDate | Date | False |
The estimated end date. |
| GeocodeStatus | String | True |
Geocode from Google Maps of the project. |
| Latitude | Double | True |
Latitude from Google Maps of the project. |
| Longitude | Double | True |
Longitude from Google Maps of the project. |
| 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. |
| Name | String | False |
Project name. |
| Priority | String | False |
The priority of the project. |
| ProjectManager | String | True |
The user name of the user assigned to the project. |
| ProjectTemplate | String | True |
Which project template was the project created from |
| StartDate | Date | False |
The estimated start date. |
| Status | String | False |
The status of the project. |
| TotalActualEffort(hrs) | Int | True |
The total actual effort of the project. |
| TotalEstimatedEffort(hrs) | Int | True |
The total estimated effort of the project. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| Rows@Next | String |
Identifier for the next page of results. Do not set this value manually. |