MSS_ORG_ATTRIBUTE_VALUES
This is a detail table that stores attribute values per an organization.
Details
-
Schema: FUSION
-
Object owner: MSS
-
Object type: TABLE
-
Tablespace: Default
Primary Key
Name | Columns |
---|---|
MSS_ORG_ATTRIBUTE_VALUES_PK |
ORGANIZATION_ID, ATTRIBUTE_ID, ATTRIBUTE_VALUE_ID |
Columns
Name | Datatype | Length | Precision | Not-null | Comments |
---|---|---|---|---|---|
ORGANIZATION_ID | NUMBER | 18 | Yes | Identifier of the organization. | |
ATTRIBUTE_ID | NUMBER | 18 | Yes | Reference to parent attribute ID; foreign key to MSS_ORG_ATTRIBUTES | |
ATTRIBUTE_VALUE_ID | NUMBER | 18 | Yes | Identifier of the attribute value, mapped from FND_VS_VALUES_B.VALUE_ID for the Fusion schema. | |
ATTRIBUTE_VALUE_CODE | VARCHAR2 | 300 | Yes | User defined code of the attribute value. | |
ATTRIBUTE_VALUE_NAME | VARCHAR2 | 300 | Display name the associated attribute value. | ||
DESCRIPTION | VARCHAR2 | 2000 | Description of the associated attribute value. | ||
COLOR | VARCHAR2 | 10 | Attribute color as HTML color code, e.g. "#FF0000" for red. | ||
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. |
Foreign Keys
Table | Foreign Table | Foreign Key Column |
---|---|---|
MSS_ORG_ATTRIBUTE_VALUES | mss_org_attributes | ORGANIZATION_ID, ATTRIBUTE_ID |
mss_org_attributes | mss_org_attribute_values | ORGANIZATION_ID, ATTRIBUTE_ID, DEFAULT_ATTRIBUTE_VALUE_ID |
mss_org_res_attr_sequences | mss_org_attribute_values | ORGANIZATION_ID, ATTRIBUTE_ID, ATTRIBUTE_VALUE_ID |
mss_org_changeover_rules | mss_org_attribute_values | ORGANIZATION_ID, ATTRIBUTE_ID, FROM_ATTRIBUTE_VALUE_ID |
mss_org_changeover_rules | mss_org_attribute_values | ORGANIZATION_ID, ATTRIBUTE_ID, TO_ATTRIBUTE_VALUE_ID |
mss_org_res_attr_value_seqs | mss_org_attribute_values | ORGANIZATION_ID, ATTRIBUTE_ID, ATTRIBUTE_VALUE_ID |
Indexes
Index | Uniqueness | Tablespace | Columns |
---|---|---|---|
MSS_ORG_ATTRIBUTE_VALUES_U1 | Unique | Default | ORGANIZATION_ID, ATTRIBUTE_ID, ATTRIBUTE_VALUE_ID |
MSS_ORG_ATTRIBUTE_VALUES_U2 | Unique | Default | ORGANIZATION_ID, ATTRIBUTE_ID, ATTRIBUTE_VALUE_CODE |