This table is an association table that represents the "shared" relationship between a user and a document.
Details
-
Schema: FUSION
-
Object owner: ZSO
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
ZSO_USER_SHARE_DOCS_PK |
SHARE_DOC_ID, USER_PARTY_ID, SHARE_TYPE |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| SHARE_DOC_ID | VARCHAR2 | 64 | Yes | The ID of the Document that is being shared. | |
| USER_PARTY_ID | NUMBER | 18 | Yes | The Party ID of the person with whom a document shared. Expected to be compared with current user's Party Id (from session context) to filter "My Documents" and "All Shared Documents". | |
| SHARE_TYPE | VARCHAR2 | 30 | Yes | Discriminator column: indicates the type of User Share that the record represents. Valid values are "DOC" for Document and "CS" for Content Set. | |
| DOC_OWNER_FLAG | VARCHAR2 | 1 | Document Owner boolean value indicator. 'Y' to indicate that the Party with whom the document is shared has Ownership privileges. | ||
| KEY_PAGE_SEQUENCE_NUM | NUMBER | 9 | Shared user's preferred Key Page indicator for a page-specific thumbnail that represents that individual user's preferred thumbnail page. If null, use the Document's Default Key Page Sequence Number. | ||
| CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
| CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
| LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
| LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
| LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. | ||
| OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. | |
| SHARED_DATE | TIMESTAMP | The date or timestamp value for document shared. |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| ZSO_USER_SHARE_DOCS_U1 | Unique | Default | SHARE_DOC_ID, USER_PARTY_ID, SHARE_TYPE |