OKC_ARTICLE_RELATNS_ALL

This table stores the relationship between clauses in an operating unit. e.g. INCOMPATIBLE or ALTERNATE. This table replaces OKC_STD_ART_INCMPTS used prior to 11.5.10. Also, for each relationship defined between any two clauses in a given operating unit, the results are stored as two rows with one clause as source and the other as target with a reciprocal relationship.

Details

  • Schema: FUSION

  • Object owner: OKC

  • Object type: TABLE

  • Tablespace: APPS_TS_TX_DATA

Primary Key

Name Columns

OKC_ARTICLE_RELATNS_ALL_PK

ID

Columns

Name Datatype Length Precision Not-null Comments
ID NUMBER 18 Yes System generated Primary Key.
SOURCE_ARTICLE_ID NUMBER 18 Yes This references one of the two related clauses. Foreign Key to OKC_ARTICLES_ALL.
TARGET_ARTICLE_ID NUMBER 18 Yes This references one of the two related clauses. Foreign Key to OKC_ARTICLES_ALL.
ORG_ID NUMBER 18 Yes Indicates the identifier of the business unit associated to 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.
RELATIONSHIP_TYPE VARCHAR2 30 Yes Relationship Type between two clauses. Based on FND_LOOKUPS e.g. INCOMPATIBLE - Incompatible Clauses, ALTERNATE - Alternate Clauses.
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_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.

Foreign Keys

Table Foreign Table Foreign Key Column
OKC_ARTICLE_RELATNS_ALL okc_articles_all TARGET_ARTICLE_ID

Indexes

Index Uniqueness Tablespace Columns
OKC_ARTICLE_RELATNS_ALL_N1 Non Unique Default SOURCE_ARTICLE_ID, RELATIONSHIP_TYPE, ORG_ID
OKC_ARTICLE_RELATNS_ALL_N2 Non Unique Default TARGET_ARTICLE_ID
OKC_ARTICLE_RELATNS_ALL_U1 Unique Default SOURCE_ARTICLE_ID, TARGET_ARTICLE_ID, ORG_ID
OKC_ARTICLE_RELATNS_ALL_U2 Unique Default ID