FND_FOREIGN_KEYS
Contains the list of Foreign Keys registered in Applications.
Details
-
Schema: FUSION
-
Object owner: FND
-
Object type: TABLE
-
Tablespace: REFERENCE
Primary Key
Name | Columns |
---|---|
FND_FOREIGN_KEYS_PK |
TABLE_ID, FOREIGN_KEY_ID |
Columns
Name | Datatype | Length | Precision | Not-null | Comments |
---|---|---|---|---|---|
TABLE_ID | NUMBER | 18 | Yes | Table Identifier. | |
FOREIGN_KEY_ID | NUMBER | 18 | Yes | Foreign Key Identifier. | |
FOREIGN_KEY_NAME | VARCHAR2 | 30 | Yes | Foreign Key Name. | |
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. | |
CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. | ||
PRIMARY_KEY_TABLE_ID | NUMBER | 18 | Yes | Identifier for the Foreign Key Constraint's Referenced Table. | |
PRIMARY_KEY_ID | NUMBER | 18 | Yes | Identifier for the Foreign Key Constraint's Referenced Primary/Unique Key. | |
CASCADE_BEHAVIOR | VARCHAR2 | 1 | Yes | Cascade Behaviour : 'C' for CASCADE, 'U' for SET_NULL, 'N' for others. Default Value: 'N'. | |
FOREIGN_KEY_RELATION | VARCHAR2 | 1 | Yes | Foreign Key Relation. | |
CONDITION | VARCHAR2 | 2000 | Condition statement for conditional foreign keys (arc relationships). | ||
LOGICAL | VARCHAR2 | 1 | Y/N Flag : Is this Foreign Key logical ? | ||
SHORT_NAME | VARCHAR2 | 30 | Foreign Key Short Name. | ||
STATUS | VARCHAR2 | 30 | Active / Obsolete (default: 'Active'). |
Foreign Keys
Table | Foreign Table | Foreign Key Column |
---|---|---|
FND_FOREIGN_KEYS | FND_TABLES | TABLE_ID |
FND_FOREIGN_KEYS | FND_PRIMARY_KEYS | PRIMARY_KEY_TABLE_ID, PRIMARY_KEY_ID |
FND_FOREIGN_KEY_COLUMNS | FND_FOREIGN_KEYS | TABLE_ID, FOREIGN_KEY_ID |
Indexes
Index | Uniqueness | Tablespace | Columns |
---|---|---|---|
FND_FOREIGN_KEYS_N1 | Non Unique | Default | PRIMARY_KEY_TABLE_ID, PRIMARY_KEY_ID |
FND_FOREIGN_KEYS_U1 | Unique | Default | TABLE_ID, FOREIGN_KEY_ID |
FND_FOREIGN_KEYS_U2 | Unique | Default | FOREIGN_KEY_NAME, TABLE_ID |