Events
Create, update, delete, and query events registered in the SuiteCRM project
テーブル固有の情報
Select
WHERE 句で任意の条件を使用して、Events テーブルをクエリできます。本製品 はSuiteCRM API を使用して結果をフィルタリングします。
SELECT * FROM Events WHERE Locations LIKE '%San Francisco%' AND [Start Date] < '2017-02-02'
Insert
書き込み可能なカラムを指定して、Event エントリを作成します。
INSERT INTO Events (Name, [Start Date], [End Date]) VALUES ('Inauguration', '2017-06-13', '2017-06-14')
Update
Id を指定して、書き込み可能なEvent カラムを更新できます。
UPDATE Events SET Budget = 30000 WHERE Id = 'Test123'
Delete
Id を指定して、Event を削除します。
DELETE FROM Events WHERE Id = '10003'
Columns
| Name | Type | ReadOnly | Description |
| ID [KEY] | String | False |
The unique identifier of the event. |
| AcceptRedirectURL | String | False |
The URL to redirect to if the event is accepted |
| ActivityStatus | String | False |
Status type of the event activity |
| Assignedto | String | True |
The user name of the user assigned to the record. |
| AssignedUserId | String | False |
The Id of the user assigned to the record. |
| Budget | Double | False |
Budget set for the event |
| CreatedById | String | True |
The Id of the user who created the record. |
| CreatedByName | String | True |
The name of the user who created the record. |
| Currency | String | False |
Id of the currency used in the budget |
| DateCreated | Datetime | True |
The date the record was created. |
| DateModified | Datetime | True |
The date the record was last modified. |
| DeclineRedirect_URL | String | False |
The URL to redirect to if the event is declined |
| Deleted | Bool | False |
The record deletion indicator. |
| Description | String | False |
Description given for the event |
| Duration | String | True |
Complete duration of the event |
| DurationHours | Int | False |
Number of hours the event lasts |
| DurationMinutes | Int | False |
Number of minutes the event lasts |
| EmailInviteTemplate | String | False |
Template for an email invite |
| EndDate | Datetime | False |
Date the event ends |
| LBL_RESPONSE_LINK | String | True |
Url that accepts the event invitation |
| LBL_RESPONSE_LINK_DECLINED | String | True |
URL that declines the event invitation |
| Locations | String | True |
Locations the event will take place |
| 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 |
Name given to the event |
| StartDate | Datetime | False |
Date the event starts |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| Rows@Next | String |
Identifier for the next page of results. Do not set this value manually. |