Search Results msc_operations
Overview
The MSC_OPERATION_NETWORKS table is a core data structure within the Oracle E-Business Suite Advanced Supply Chain Planning (ASCP) module, specifically for releases 12.1.1 and 12.2.2. It functions as a child table to MSC_OPERATIONS and is fundamental for modeling complex manufacturing and process routings. Its primary role is to define and store the network relationships or precedence constraints between individual operations within a network routing. Unlike simple sequential routings, network routings allow for parallel and conditional operation flows, which this table enables by explicitly mapping "from" and "to" operation dependencies. This data is critical for the planning engine to correctly sequence production activities, calculate accurate lead times, and schedule material and resource requirements.
Key Information Stored
The table's structure is designed to uniquely identify operation dependencies within a specific supply chain plan. Its primary key is a composite of five columns, ensuring each network link is distinct for a given plan instance. The most significant columns include PLAN_ID, which links the data to a specific ASCP plan instance; ROUTING_SEQUENCE_ID, identifying the parent routing; and SR_INSTANCE_ID, denoting the source organization instance. The two pivotal columns for defining the network are FROM_OP_SEQ_ID and TO_OP_SEQ_ID. These foreign keys reference operation sequence IDs within MSC_ROUTING_OPERATIONS, establishing a directed link that specifies a precedence relationship where the "from" operation must be completed before the "to" operation can begin. This simple FROM/TO pair structure can model complex webs of serial and parallel operations.
Common Use Cases and Queries
This table is primarily used by the ASCP engine during plan generation and is queried for reporting on planned manufacturing order schedules and routing complexity. A common analytical use case is to trace the critical path or visualize the entire operation network for a given item and plan. A typical query would join MSC_OPERATION_NETWORKS with MSC_ROUTING_OPERATIONS and MSC_ITEMS to list all operation dependencies. For example:
SELECT mon.FROM_OP_SEQ_ID, mon.TO_OP_SEQ_ID, mro.OPERATION_SEQ_NUM, mi.ITEM_NAME FROM MSC_OPERATION_NETWORKS mon, MSC_ROUTING_OPERATIONS mro, MSC_ITEMS mi WHERE mon.PLAN_ID = :p_plan_id AND mon.ROUTING_SEQUENCE_ID = :p_routing_id AND mon.TO_OP_SEQ_ID = mro.OP_SEQ_ID AND mro.INVENTORY_ITEM_ID = mi.INVENTORY_ITEM_ID ORDER BY mro.OPERATION_SEQ_NUM;
This data is essential for validating that complex routings have been correctly loaded from source systems like Oracle Manufacturing and are being accurately considered during the planning run.
Related Objects
MSC_OPERATION_NETWORKS has tightly defined relationships with other key planning tables. As documented, it is a direct child of MSC_OPERATIONS and holds two foreign key relationships to MSC_ROUTING_OPERATIONS—one for the FROM_OP_SEQ_ID and another for the TO_OP_SEQ_ID. These relationships enforce referential integrity for operation sequences. The table's existence is predicated on a network routing defined in MSC_ROUTINGS. For comprehensive reporting, queries often join through MSC_ROUTING_OPERATIONS to MSC_DEPARTMENTS for resource information and to MSC_ITEMS for the planned item details. The table is populated during the plan data snapshot process from source routing tables and is subsequently read extensively by the planning optimization engine.
-
Table: MSC_OPERATION_NETWORKS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_OPERATION_NETWORKS, object_name:MSC_OPERATION_NETWORKS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table is a child table of msc_operations. Describes the network structure of operations of a network routing. , implementation_dba_data: MSC.MSC_OPERATION_NETWORKS ,
-
Table: MSC_OPERATION_NETWORKS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_OPERATION_NETWORKS, object_name:MSC_OPERATION_NETWORKS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table is a child table of msc_operations. Describes the network structure of operations of a network routing. , implementation_dba_data: MSC.MSC_OPERATION_NETWORKS ,
-
TABLE: MSC.MSC_OPERATION_NETWORKS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_OPERATION_NETWORKS, object_name:MSC_OPERATION_NETWORKS, status:VALID,
-
TABLE: MSC.MSC_OPERATION_NETWORKS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_OPERATION_NETWORKS, object_name:MSC_OPERATION_NETWORKS, status:VALID,
-
eTRM - MSC Tables and Views
12.1.1
description: This table contains the mapping between user-defined zone and included regions ,
-
eTRM - MSC Tables and Views
12.2.2
description: This table contains the mapping between user-defined zone and included regions ,
-
eTRM - MSC Tables and Views
12.1.1
description: This table contains the mapping between user-defined zone and included regions ,
-
eTRM - MSC Tables and Views
12.2.2
description: This table contains the mapping between user-defined zone and included regions ,