MSS_OP_ATTRIBUTE_VALUES

This is an association table that stores assigned attribute values per manufacturing operation, which is uniquely identified by a routing code and an operation sequence number. A manufacturing operation and a resource sequence number maps to a PS operation. However attribute value assignment is done at the manufacturing operation level.

Details

  • Schema: FUSION

  • Object owner: MSS

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

MSS_OP_ATTRIBUTE_VALUES_PK

PLAN_ID, OPERATION_ID, RESOURCE_SEQ_NUMBER, ATTRIBUTE_ID

Columns

Name Datatype Length Precision Not-null Comments
PLAN_ID NUMBER 18 Yes Identifier of the Production Scheduling plan.
OPERATION_ID NUMBER 18 Yes Operation ID. Foreign key to the MSS_OPERATIONS table.
RESOURCE_SEQ_NUMBER NUMBER Yes Resource sequence number of the operation.
ATTRIBUTE_ID NUMBER 18 Yes Reference to attribute value ID; foreign key to MSS_ATTRIBUTES
ATTRIBUTE_VALUE_ID NUMBER 18 Reference to attribute value ID; if null assign default attribute value of the attribute; foreign key to MSS_ATTRIBUTE_VALUES
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_OP_ATTRIBUTE_VALUES mss_attributes PLAN_ID, ATTRIBUTE_ID
MSS_OP_ATTRIBUTE_VALUES mss_attribute_values PLAN_ID, ATTRIBUTE_ID, ATTRIBUTE_VALUE_ID
MSS_OP_ATTRIBUTE_VALUES mss_operations PLAN_ID, OPERATION_ID, RESOURCE_SEQ_NUMBER

Indexes

Index Uniqueness Tablespace Columns
MSS_OP_ATTRIBUTE_VALUES_N1 Non Unique Default PLAN_ID, ATTRIBUTE_ID, ATTRIBUTE_VALUE_ID
MSS_OP_ATTRIBUTE_VALUES_U1 Unique Default PLAN_ID, OPERATION_ID, RESOURCE_SEQ_NUMBER, ATTRIBUTE_ID