DocumentRevisions
Query and delete revisions to uploaded SuiteCRM documents
テーブル固有の情報
Select
WHERE 句で任意の条件を使用して、DocumentRevisions テーブルをクエリできます。本製品 はSuiteCRM API を使用して結果をフィルタリングします。
SELECT * FROM [Document Revisions] WHERE [Related Document] = 'DocId'
Insert
INSERT は、このテーブルではサポートされていません。
Update
UPDATE は、このテーブルではサポートされていません。
Delete
Id を指定して、Document Revision を削除します。
DELETE FROM [Document Revisions] WHERE Id = '10003'
Columns
| Name | Type | ReadOnly | Description |
| RevisionNumber [KEY] | String | False |
The unique identifier for the document revision. |
| ChangeLog | String | False |
The change log for the document revision. |
| CreatedById | String | True |
The Id of the user who created the document. |
| CreatedByName | String | True |
The name of the user who created the record. |
| DateCreated | Datetime | True |
The date the revision was entered. |
| DateModified | Datetime | True |
The date the record was last modified. |
| Deleted | Bool | False |
Whether the document revision is deleted. |
| DocumentName | String | True |
The name of the document. |
| DocumentSourceID | String | False |
The document Id from the Web service provider for the document. |
| DocumentSourceURL | String | False |
The document URL from the Web service provider for the document. |
| File | String | False |
The file name of the document. |
| FileExtension | String | False |
The file extension of the document. |
| LastRevisionId | String | True |
The Id of the latest revision. |
| LatestRevision | String | True |
The latest revision. |
| MimeType | String | False |
The MIME type of the document. |
| RelatedDocument | String | False |
The Id for the associated document. |
| Revision | String | False |
The revision number. |
| Source | String | False |
The document type (e.g., Google, box.net, or IBM SmartCloud). |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| Rows@Next | String |
Identifier for the next page of results. Do not set this value manually. |