Notes
Create, update, delete, and query Notes created in SuiteCRM
テーブル固有の情報
Select
WHERE 句で任意の条件を使用して、Notes テーブルをクエリできます。本製品 はSuiteCRM API を使用して結果をフィルタリングします。
SELECT * FROM Notes WHERE Subject WHERE Name = 'test'
Insert
書き込み可能なカラムを指定して、Note を作成します。
INSERT INTO Notes (Id, Name) VALUES ('id', 'Energy')
Update
Id を指定して、書き込み可能なNote カラムを更新できます。
UPDATE Notes SET Name = 'new name', Description = 'Desc' WHERE Id = 'Test123'
Delete
Id を指定して、Note を削除します。
DELETE FROM Notes WHERE Id = 10003
Columns
| Name | Type | ReadOnly | Description |
| AssignedUserId | String | False |
The Id of the user assigned to the record. |
| AssignedUserName | String | True |
|
| AssignedUserLink | String | True |
Link to the user which the record has been assigned to |
| SecurityGroups | String | True |
The security group associated with the record. |
| Id [KEY] | String | False |
Unique identifier of the record. |
| DateEntered | Datetime | False |
The date the record was created. |
| DateModified | Datetime | False |
The date the record was last modified. |
| ModifiedUserId | String | False |
The Id of the user who last modified the record. |
| ModifiedByName | String | True |
The name of the user who last modified the record. |
| CreatedBy | String | False |
The Id of the user who created the record. |
| CreatedByName | String | True |
The name of the user who created the record. |
| Name | String | False |
|
| FileMimeType | String | False |
|
| FileUrl | String | False |
|
| Filename | String | False |
|
| ParentType | String | False |
Sugar module the Note is associated with. |
| ParentId | String | False |
The Id of the parent of this account. |
| ContactId | String | False |
The Id of the contact the note is associated with. |
| PortalFlag | Bool | False |
|
| EmbedFlag | Bool | False |
|
| Description | String | False |
|
| Deleted | Bool | False |
The record deletion indicator. |
| ParentName | String | True |
The name of the parent of this account. |
| ContactName | String | True |
|
| ContactPhone | String | False |
|
| ContactEmail | String | False |
|
| AccountId | String | False |
The Id of the account associated with the note. |
| OpportunityId | String | False |
The Id of the opportunity associated with the note. |
| AcaseId | String | False |
|
| LeadId | String | False |
The Id of the lead associated with the note. |
| CreatedByLink | String | True |
Link to the record who created it |
| ModifiedUserLink | String | True |
Link to the record who modified it. |
| Contact | String | True |
The name of the contact associated with the note. |
| Cases | String | True |
The cases associated with the record. |
| Accounts | String | True |
The accounts associated with the record |
| Opportunities | String | True |
The opportunities associated with the record. |
| Leads | String | True |
The leads associated with the record. |
| Bugs | String | True |
The bugs associated with the record. |
| AosContracts | String | True |
|
| Emails | String | True |
The emails associated with the record |
| Projects | String | True |
|
| ProjectTasks | String | True |
|
| Meetings | String | True |
The meetings associated with the record. |
| Calls | String | True |
The calls associated with the record |
| Tasks | String | True |
The tasks associated with the record. |