Search Results msc_st_job_operations
Overview
MSC_ST_JOB_OPERATIONS is a staging table within the MSC schema, belonging to the Advanced Supply Chain Planning (ASCP) module in Oracle EBS 12.1.1 and 12.2.2. It serves as the landing zone for work-in-process (WIP) job operation records that are collected from one or more source instances before being transformed, validated, and loaded into the ASCP planning engine's operational datastore. The "ST" prefix denotes a staging table, and rows here typically carry collection metadata such as batch identifiers, source instance codes, and processing flags that drive the ASCP data collection and refresh process.
Because the table is populated by the collections program and consumed downstream by the planning engine, it represents transient integration data rather than durable transactional master data. From a Data Vault modeling perspective, the metadata's heuristic classification is standalone—no hubs, links, or satellites are inferred from the documented foreign key structure. This suggests the table functions as a self-contained staging entity whose grain is defined by the WIP entity plus operation sequence, rather than by conformed business keys shared across a star schema.
Key Information Stored
The table contains 51 documented columns. The most significant are:
- WIP_ENTITY_ID — Identifier of the discrete or repetitive job to which the operation belongs; the primary business-key candidate.
- OPERATION_SEQ_NUM and OPERATION_SEQUENCE_ID — The sequence number and surrogate identifier of the operation within the routing.
- ORGANIZATION_ID — The inventory organization context for the job.
- DEPARTMENT_ID — The department performing the operation; documented as a foreign key to BOM_DEPARTMENTS.
- ROUTING_SEQUENCE_ID, ROUTING_NAME, and ALTERNATE_ROUTING_DESIGNATOR — Routing and alternate routing references.
- RECO_START_DATE and RECO_COMPLETION_DATE — Recommended start and completion dates produced by planning.
- NETWORK_START_END and RECOMMENDED — Planning network attributes and recommendation indicators.
- YIELD, CUMULATIVE_YIELD, and REVERSE_CUMULATIVE_YIELD — Operation-level yield factors used in capacity and material calculations.
- OPERATION_LEAD_TIME_PERCENT and NET_PLANNING_PERCENT — Time and quantity planning percentages.
- SR_INSTANCE_ID, SR_INSTANCE_CODE, and COMPANY_NAME — Source instance identity for multi-instance collections.
- REFRESH_ID, BATCH_ID, ST_TRANSACTION_ID, PROCESS_FLAG, ERROR_TEXT, and DELETED_FLAG — Collection batch, processing status, and error handling columns.
- LAST_UPDATE_DATE, CREATED_BY, REQUEST_ID, PROGRAM_ID, and related audit columns — Standard EBS who-columns and concurrent program context.
No formal surrogate primary key is documented in the supplied metadata; WIP_ENTITY_ID combined with OPERATION_SEQ_NUM and SR_INSTANCE_ID is the practical business-key candidate.
Common Use Cases and Queries
Typical uses include troubleshooting ASCP collection errors, validating that WIP operations were staged before a planning run, and reconciling recommended dates against source WIP schedules.
A common diagnostic query identifies rows that failed to process:
SELECT WIP_ENTITY_ID, OPERATION_SEQ_NUM, PROCESS_FLAG, ERROR_TEXT FROM MSC_ST_JOB_OPERATIONS WHERE PROCESS_FLAG = 'E';
To review staged operations for a specific organization and batch:
SELECT r.ROUTING_NAME, o.OPERATION_SEQ_NUM, o.DEPARTMENT_CODE, o.RECO_START_DATE, o.RECO_COMPLETION_DATE FROM MSC_ST_JOB_OPERATIONS o WHERE o.ORGANIZATION_ID = :org_id AND o.BATCH_ID = :batch_id ORDER BY o.WIP_ENTITY_ID, o.OPERATION_SEQ_NUM;
Reporting use cases include measuring operation lead-time percentages, analyzing cumulative yield by department, and comparing recommended versus actual start/end dates for plan adherence.
Related Objects
The documented foreign key relationship is:
- BOM_DEPARTMENTS — joined on
MSC_ST_JOB_OPERATIONS.DEPARTMENT_ID = BOM_DEPARTMENTS.DEPARTMENT_ID, supplying department attributes.
Functionally related objects within the ASCP staging and planning landscape typically include the WIP job headers staged in companion MSC_ST_JOB tables, the MSC collection interface tables that migrate staged rows into the planning datastore, and the standard WIP entities (WIP_ENTITIES, WIP_OPERATIONS, BOM_OPERATIONAL_ROUTINGS) that originate the source data. The ASCP collections concurrent programs drive the insert and update activity against this table, while exception reporting views surface the PROCESS_FLAG and ERROR_TEXT values for remediation.
-
Table: MSC_ST_JOB_OPERATIONS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_JOB_OPERATIONS, object_name:MSC_ST_JOB_OPERATIONS, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: MSC.MSC_ST_JOB_OPERATIONS ,
-
Table: MSC_ST_JOB_OPERATIONS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_JOB_OPERATIONS, object_name:MSC_ST_JOB_OPERATIONS, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: MSC.MSC_ST_JOB_OPERATIONS ,
-
SYNONYM: APPS.MSC_ST_JOB_OPERATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSC_ST_JOB_OPERATIONS, status:VALID,
-
SYNONYM: APPS.MSC_ST_JOB_OPERATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSC_ST_JOB_OPERATIONS, status:VALID,
-
TABLE PARTITION: MSC.MSC_ST_JOB_OPERATIONS
12.2.2
owner:MSC, object_type:TABLE PARTITION, object_name:MSC_ST_JOB_OPERATIONS, subobject_name:ST_JOB_OPERATIONS_LEG, status:VALID,
-
TABLE PARTITION: MSC.MSC_ST_JOB_OPERATIONS
12.1.1
owner:MSC, object_type:TABLE PARTITION, object_name:MSC_ST_JOB_OPERATIONS, subobject_name:ST_JOB_OPERATIONS_LEG, status:VALID,
-
VIEW: MSC.MSC_ST_JOB_OPERATIONS#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_ST_JOB_OPERATIONS#, status:VALID,
-
VIEW: MSC.MSC_ST_JOB_OPERATIONS#
12.2.2
-
TABLE: MSC.MSC_ST_JOB_OPERATIONS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_JOB_OPERATIONS, object_name:MSC_ST_JOB_OPERATIONS, status:VALID,
-
TABLE: MSC.MSC_ST_JOB_OPERATIONS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_JOB_OPERATIONS, object_name:MSC_ST_JOB_OPERATIONS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GMP_APS_DS_PULL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMP_APS_DS_PULL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
Lookup Type: MSC_STAGING_TABLE
12.1.1
product: MSC - Advanced Supply Chain Planning , meaning: MSC_STAGING_TABLE , description: List of staging tables used by Collections ,
-
PACKAGE BODY: APPS.GMP_APS_DS_PULL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMP_APS_DS_PULL, status:VALID,
-
Lookup Type: MSC_STAGING_TABLE
12.2.2
product: MSC - Advanced Supply Chain Planning , meaning: MSC_STAGING_TABLE , description: List of staging tables used by Collections ,
-
PACKAGE BODY: APPS.MSC_CL_GMP_UTILITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_CL_GMP_UTILITY, status:VALID,
-
PACKAGE BODY: APPS.MSC_CL_GMP_UTILITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_CL_GMP_UTILITY, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Lookup Type: MSC_X_SETUP_ENTITY_CODE
12.1.1
product: MSC - Advanced Supply Chain Planning , meaning: MSC_ST_DEMANDS ,
-
PACKAGE BODY: APPS.MSC_CL_PRE_PROCESS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_CL_PRE_PROCESS, status:VALID,
-
PACKAGE BODY: APPS.MSC_CL_PRE_PROCESS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_CL_PRE_PROCESS, status:VALID,
-
Lookup Type: MSC_X_SETUP_ENTITY_CODE
12.2.2
product: MSC - Advanced Supply Chain Planning , meaning: MSC_ST_DEMANDS ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.MSC_CL_PURGE_STAGING SQL Statements
12.1.1
-
APPS.MSC_CL_PRE_PROCESS dependencies on MSC_ST_JOB_OPERATIONS
12.2.2
-
APPS.MSC_CL_GMP_UTILITY dependencies on MSC_ST_JOB_OPERATIONS
12.1.1
-
APPS.GMP_APS_DS_PULL dependencies on MSC_ST_JOB_OPERATIONS
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.MSC_CL_PURGE_STAGING SQL Statements
12.2.2
-
APPS.MSC_CL_WIP_PULL SQL Statements
12.1.1
-
APPS.MSC_CL_PRE_PROCESS dependencies on MSC_ST_JOB_OPERATIONS
12.1.1
-
APPS.GMP_APS_DS_PULL dependencies on MSC_ST_JOB_OPERATIONS
12.1.1
-
APPS.MSC_CL_GMP_UTILITY dependencies on MSC_ST_JOB_OPERATIONS
12.2.2
-
APPS.MSC_CL_WIP_PULL SQL Statements
12.2.2
-
APPS.MSC_CL_WIP_ODS_LOAD SQL Statements
12.1.1
-
PACKAGE BODY: APPS.MSC_CL_WIP_PULL
12.1.1
-
PACKAGE BODY: APPS.MSC_CL_WIP_PULL
12.2.2
-
APPS.MSC_CL_WIP_ODS_LOAD SQL Statements
12.2.2
-
PACKAGE BODY: APPS.MSC_CL_PURGE_STAGING
12.1.1
-
PACKAGE BODY: APPS.MSC_CL_PURGE_STAGING
12.2.2