Trackers
Create, update, delete, and query the created trackers.
テーブル固有の情報
Select
WHERE 句で任意の条件を使用して、Trackers テーブルをクエリできます。connector はSuiteCRM API を使用して結果をフィルタリングします。
SELECT * FROM Trackers WHERE [Date of Last Action] <= '2015-04-01'
Insert
書き込み可能なカラムを指定して、Tracker を作成します。
INSERT INTO Trackers (Action, [Item Id], [Item Summary], Trackers) VALUES ('Detection', 'recordId3', 'Goal is to find inconsistencies', 'Leads')
Update
Id を指定して、書き込み可能なTracker カラムを更新できます。
UPDATE Trackers SET [Record Visible] = false WHERE Id = 'Test123'
Delete
Id を指定して、Tracker を削除します。
DELETE FROM Trackers WHERE Id = '10003'
Columns
| Name | Type | ReadOnly | Description |
| ID [KEY] | Int | False |
The unique identifier of the tracker. |
| Action | String | False |
The type of action being tracked |
| DateofLastAction | Datetime | True |
Date when the action last took place |
| Deleted | Bool | False |
The record deletion indicator. |
| ItemId | String | True |
Id of the record being tracked |
| ItemSummary | String | True |
Name of the record being tracked |
| MonitorId | String | True |
Id of the tracker monitor |
| RecordVisible | Bool | True |
Whether the record is visible |
| SessionId | String | True |
Which session Id made the change |
| Trackers | String | False |
The module being tracked |
| UserId | String | True |
User Id that made the change |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| Rows@Next | String |
Identifier for the next page of results. Do not set this value manually. |