MSS_OP_TEMPORAL_RELATIONS

This table stores the temporal relationship information between operations.

Details

  • Schema: FUSION

  • Object owner: MSS

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

MSS_OP_TEMPORAL_RELATIONS_PK

PLAN_ID, FROM_OPERATION_ID, FROM_RESOURCE_SEQ_NUMBER, TO_OPERATION_ID, TO_RESOURCE_SEQ_NUMBER

Columns

Name Datatype Length Precision Not-null Comments
PLAN_ID NUMBER 18 Yes Identifier of the Production Scheduling plan.
ROUTING_ID NUMBER 18 Yes Parent routing ID. Foreign key to the MSS_ROUTINGS table.
FROM_OPERATION_ID NUMBER 18 Yes Foreign Key reference to MSS_OPERATIONS.
FROM_RESOURCE_SEQ_NUMBER NUMBER Yes Resource sequence number of the from operation.
TO_OPERATION_ID NUMBER 18 Yes Foreign Key reference to MSS_OPERATIONS.
TO_RESOURCE_SEQ_NUMBER NUMBER Yes Resource sequence number of the to operation.
TEMPORAL_CONSTRAINT_TYPE VARCHAR2 20 Temporal constraint type: StartsAfterEnd|StartsAtEnd|StartsAfterStart|StartsAtStart|EndsAtEnd
MIN_SEPARATION NUMBER Minimum separation duration between operations.
MIN_SEPARATION_UNIT VARCHAR2 20 Minimum separation time unit: seconds|minutes|hours|days|weeks
MAX_SEPARATION NUMBER Maximum separation duration between operations.
MAX_SEPARATION_UNIT VARCHAR2 20 Maximum separation time unit: seconds|minutes|hours|days|weeks
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_TEMPORAL_RELATIONS mss_routings PLAN_ID, ROUTING_ID
MSS_OP_TEMPORAL_RELATIONS mss_operations PLAN_ID, FROM_OPERATION_ID, FROM_RESOURCE_SEQ_NUMBER
MSS_OP_TEMPORAL_RELATIONS mss_operations PLAN_ID, TO_OPERATION_ID, FROM_RESOURCE_SEQ_NUMBER

Indexes

Index Uniqueness Tablespace Columns
MSS_OP_TEMPORAL_RELATIONS_N1 Non Unique Default PLAN_ID, ROUTING_ID
MSS_OP_TEMPORAL_RELATIONS_N2 Non Unique Default PLAN_ID, TO_OPERATION_ID, TO_RESOURCE_SEQ_NUMBER
MSS_OP_TEMPORAL_RELATIONS_U1 Unique Default PLAN_ID, FROM_OPERATION_ID, FROM_RESOURCE_SEQ_NUMBER, TO_OPERATION_ID, TO_RESOURCE_SEQ_NUMBER