Search Results msc_wip_job_schedule_interface
Overview
MSC_WIP_JOB_SCHEDULE_INTERFACE is an interface table owned by the MSC schema within the Advanced Supply Chain Planning (ASCP) module of Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented purpose is to hold requests to create or modify WIP jobs and repetitive schedules. In the ASCP architecture, the planning engine generates and manages work orders and schedules in the planning server schema, and this table serves as the staging and transmission mechanism through which those planned jobs and schedules are pushed back to the execution system (Oracle Work in Process) or pulled into planning from external or legacy sources. Records are annotated with a LOAD_TYPE and PROCESS_STATUS so that concurrent programs can determine the operation requested (create or update), the direction of the load, and the outcome of each processing attempt.
From a modeling perspective, the mined Data Vault classification for this table is standalone. Following that heuristic, it would be treated as a standalone structure rather than decomposed into a hub, link, or satellite, reflecting the fact that it functions as a transient interface buffer rather than a normalized master entity.
Key Information Stored
The table contains 47 documented columns that span transactional identity, planning context, and processing control. The most significant include:
- GROUP_ID, HEADER_ID, SOURCE_LINE_ID, WIP_ENTITY_ID – interrelated identifiers that link the interface record to its load batch, header, source line, and (where applicable) the existing WIP entity in the execution system.
- SOURCE_CODE, LOAD_TYPE, PROCESS_PHASE, PROCESS_STATUS, STATUS_TYPE – control columns indicating the source system, whether the record is an insert or update, and where the record stands in the processing lifecycle.
- ORGANIZATION_ID, ORGANIZATION_TYPE – identify the inventory organization and its type for which the job or schedule is defined.
- PRIMARY_ITEM_ID, START_QUANTITY, NET_QUANTITY, UOM_CODE – define the item being built and the planned quantities.
- FIRST_UNIT_START_DATE, LAST_UNIT_COMPLETION_DATE, REQUESTED_COMPLETION_DATE, DAILY_PRODUCTION_RATE, PROCESSING_WORK_DAYS – the scheduling and capacity attributes that describe when and how fast the job or repetitive schedule runs.
- CLASS_CODE, JOB_NAME, FIRM_PLANNED_FLAG, FIRM_FLAG, SCHEDULE_PRIORITY, SCHEDULE_GROUP_ID, BUILD_SEQUENCE – classification and sequencing attributes, including the foreign key to WIP_SCHEDULE_GROUPS.
- BILL_RTG_EXPLOSION_FLAG, BOM_REFERENCE_ID, ROUTING_REFERENCE_ID, BOM_REVISION_DATE, ROUTING_REVISION_DATE, ALTERNATE_BOM_DESIGNATOR, ALTERNATE_ROUTING_DESIGNATOR – bill and routing context governing how the job explodes into components and operations.
- PROJECT_ID, TASK_ID, SR_INSTANCE_ID, MAINTENANCE_OBJECT_SOURCE, CFM_ROUTING_FLAG – project, source-instance, and specialized manufacturing context.
Standard WHO columns (LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN) provide audit tracking. No explicit surrogate primary key is documented in the metadata; in practice GROUP_ID combined with SOURCE_LINE_ID and ORGANIZATION_ID typically form the business-key candidates used to identify a unique interface record.
Common Use Cases and Queries
Typical usage centers on monitoring and troubleshooting the flow of planned jobs and schedules between ASCP and WIP. Common scenarios include reviewing failed or stuck interface records, reconciling planned quantities against created jobs, and auditing firm-planned orders before release.
- Identify records awaiting processing:
SELECT * FROM msc_wip_job_schedule_interface WHERE process_status != 'COMPLETED'; - Group records by load batch and source:
SELECT group_id, source_code, load_type, COUNT(*) FROM msc_wip_job_schedule_interface GROUP BY group_id, source_code, load_type; - Trace a specific organization's workload: filter by
organization_idand join to items and organizations to produce a release-ready listing. - Compare planned versus firm jobs using
firm_planned_flagandfirm_flag. - Reconciliation reporting on
last_update_dateranges to detect records that have not progressed.
Related Objects
- WIP_SCHEDULE_GROUPS – joined via
MSC_WIP_JOB_SCHEDULE_INTERFACE.SCHEDULE_GROUP_ID = WIP_SCHEDULE_GROUPS.SCHEDULE_GROUP_ID; the only documented foreign key relationship. - WIP_ENTITIES – the WIP job master, referenced through
WIP_ENTITY_IDto reconcile interface records with created jobs. - MTL_SYSTEM_ITEMS – resolved through
PRIMARY_ITEM_IDfor item description and attribute lookups. - MTL_PARAMETERS / ORG_ORGANIZATION_DEFINITIONS – resolved through
ORGANIZATION_IDfor organization context. - MSC_WIP_JOB_SCHEDULE_INTERFACE processing is driven by ASCP concurrent programs, which consume these rows and post results to the execution side.
- WIP_DISCRETE_JOBS and WIP_REPETITIVE_SCHEDULES – destination entities for the create/modify requests this table carries.
Together these relationships position MSC_WIP_JOB_SCHEDULE_INTERFACE as the transactional bridge between ASCP planning output and Oracle Work in Process execution.
-
Table: MSC_WIP_JOB_SCHEDULE_INTERFACE
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_WIP_JOB_SCHEDULE_INTERFACE, object_name:MSC_WIP_JOB_SCHEDULE_INTERFACE, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Requests to create or modify jobs and schedules , implementation_dba_data: MSC.MSC_WIP_JOB_SCHEDULE_INTERFACE ,
-
Table: MSC_WIP_JOB_SCHEDULE_INTERFACE
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_WIP_JOB_SCHEDULE_INTERFACE, object_name:MSC_WIP_JOB_SCHEDULE_INTERFACE, status:VALID, product: MSC - Advanced Supply Chain Planning , description: Requests to create or modify jobs and schedules , implementation_dba_data: MSC.MSC_WIP_JOB_SCHEDULE_INTERFACE ,
-
APPS.MSC_A2A_XML_WF SQL Statements
12.2.2
-
APPS.MSC_A2A_XML_WF SQL Statements
12.1.1
-
SYNONYM: APPS.MSC_WIP_JOB_SCHEDULE_INTERFACE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSC_WIP_JOB_SCHEDULE_INTERFACE, status:VALID,
-
APPS.MRP_RELEASE_EAM_WO SQL Statements
12.2.2
-
APPS.MRP_RESCHEDULE_CMRO_WO_PS SQL Statements
12.2.2
-
VIEW: MSC.MSC_WIP_JOB_SCHEDULE_INTERFAC#
12.2.2
-
VIEW: MSC.MSC_WIP_JOB_SCHEDULE_INTERFAC#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_WIP_JOB_SCHEDULE_INTERFAC#, status:VALID,
-
SYNONYM: APPS.MSC_WIP_JOB_SCHEDULE_INTERFACE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSC_WIP_JOB_SCHEDULE_INTERFACE, status:VALID,
-
VIEW: APPS.MSC_WIP_JOB_SCHEDULE_V
12.1.1
-
VIEW: APPS.MSC_WIP_JOB_SCHEDULE_V
12.2.2
-
PACKAGE BODY: APPS.MSC_A2A_XML_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_A2A_XML_WF, status:VALID,
-
PACKAGE BODY: APPS.MSC_A2A_XML_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_A2A_XML_WF, status:VALID,
-
PACKAGE BODY: APPS.MSC_REL_PS_PLAN_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_REL_PS_PLAN_PUB, status:VALID,
-
PACKAGE BODY: APPS.MSC_REL_PS_PLAN_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_REL_PS_PLAN_PUB, status:VALID,
-
Lookup Type: MSC_ODS_TABLE
12.1.1
product: MSC - Advanced Supply Chain Planning , meaning: MSC_ODS_TABLE , description: List of ODS tables used by Collections ,
-
PACKAGE BODY: APPS.MSC_REL_PLAN_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_REL_PLAN_PUB, status:VALID,
-
PACKAGE BODY: APPS.MSC_A2A_XML_WF
12.2.2
-
PACKAGE BODY: APPS.MSC_REL_PLAN_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_REL_PLAN_PUB, status:VALID,
-
TABLE: MSC.MSC_WIP_JOB_SCHEDULE_INTERFACE
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_WIP_JOB_SCHEDULE_INTERFACE, object_name:MSC_WIP_JOB_SCHEDULE_INTERFACE, status:VALID,
-
Lookup Type: MSC_ODS_TABLE
12.2.2
product: MSC - Advanced Supply Chain Planning , meaning: MSC_ODS_TABLE , description: List of ODS tables used by Collections ,
-
PACKAGE BODY: APPS.MSC_A2A_XML_WF
12.1.1
-
View: MSC_WIP_JOB_SCHEDULE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_WIP_JOB_SCHEDULE_V, object_name:MSC_WIP_JOB_SCHEDULE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This view contains request to create or modify discrete jobs or repetitive schedules. This view is used in XML-outbound , implementation_dba_data: APPS.MSC_WIP_JOB_SCHEDULE_V ,
-
View: MSC_WIP_JOB_SCHEDULE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_WIP_JOB_SCHEDULE_V, object_name:MSC_WIP_JOB_SCHEDULE_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This view contains request to create or modify discrete jobs or repetitive schedules. This view is used in XML-outbound , implementation_dba_data: APPS.MSC_WIP_JOB_SCHEDULE_V ,
-
VIEW: APPS.MSC_WIP_JOB_SCHEDULE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_WIP_JOB_SCHEDULE_V, object_name:MSC_WIP_JOB_SCHEDULE_V, status:VALID,
-
VIEW: APPS.MSC_WIP_JOB_SCHEDULE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_WIP_JOB_SCHEDULE_V, object_name:MSC_WIP_JOB_SCHEDULE_V, status:VALID,
-
TABLE: MSC.MSC_WIP_JOB_SCHEDULE_INTERFACE
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_WIP_JOB_SCHEDULE_INTERFACE, object_name:MSC_WIP_JOB_SCHEDULE_INTERFACE, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.MRP_RELEASE_EAM_WO
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.MSC_REL_PS_PLAN_PUB SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.MRP_AP_REL_PLAN_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.MRP_RESCHEDULE_CMRO_WO_PS
12.2.2
-
APPS.MSC_REL_PS_PLAN_PUB SQL Statements
12.1.1
-
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_A2A_XML_WF dependencies on MSC_WIP_JOB_SCHEDULE_INTERFACE
12.1.1
-
APPS.MSC_REL_PS_PLAN_PUB dependencies on MSC_WIP_JOB_SCHEDULE_INTERFACE
12.1.1
-
APPS.MSC_A2A_XML_WF dependencies on MSC_WIP_JOB_SCHEDULE_INTERFACE
12.2.2
-
APPS.MSC_REL_PLAN_PUB dependencies on MSC_WIP_JOB_SCHEDULE_INTERFACE
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.MSC_REL_PLAN_PUB dependencies on MSC_WIP_JOB_SCHEDULE_INTERFACE
12.2.2
-
APPS.MSC_REL_PS_PLAN_PUB dependencies on MSC_WIP_JOB_SCHEDULE_INTERFACE
12.2.2
-
APPS.MSC_REL_PLAN_PUB SQL Statements
12.2.2
-
APPS.MSC_REL_WF SQL Statements
12.1.1
-
APPS.MSC_REL_PLAN_PUB SQL Statements
12.1.1