Search Results count_point
Overview
WIP_INST_EMP_UPS_DISPATCH_V is a Work in Process (WIP) reporting view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented purpose is to present an employee resource instance upstream dispatch list. In discrete manufacturing, an operation may draw on employee resources whose individual assignments (instances) are dispatched from a supplying — or "upstream" — operation. This view exposes that dispatch relationship in a single flattened row per job, operation, resource, and employee instance, including quantities, department routing, count point indicators, backflush flags, and scheduling dates. It is intended primarily for inquiry, dispatch-list reporting, and integration surfaces (for example, shop-floor dispatch or MES-style extracts) rather than for transactional update. Because the view is a join of many WIP, BOM, and HR objects, it should be queried with selective predicates and is not a substitute for a base-table DML path.
Underlying Base Objects
ETRM documents the following referenced objects: BOM_DEPARTMENTS, BOM_RESOURCES, BOM_RESOURCE_EMPLOYEES, BOM_STANDARD_OPERATIONS, FND_PROFILE (package), MFG_LOOKUPS (view), MTL_SYSTEM_ITEMS_KFV, PER_ALL_PEOPLE_F, PJM_PROJECT (package), WIP_DISCRETE_JOBS, WIP_ENTITIES, WIP_OPERATIONS, WIP_OPERATION_RESOURCES_V (view), and WIP_OP_RESOURCE_INSTANCES. The structure is anchored on WIP_DISCRETE_JOBS (the job header), joined to WIP_ENTITIES for the entity name, WIP_OPERATIONS for the current and adjacent operation sequences, and WIP_OPERATION_RESOURCES_V for resource assignments. Employee instances come from BOM_RESOURCE_EMPLOYEES and WIP_OP_RESOURCE_INSTANCES, with the person's name resolved from PER_ALL_PEOPLE_F. Departments (BOM_DEPARTMENTS) supply both the current and the "from" routing context, BOM_STANDARD_OPERATIONS supplies the operation code, MTL_SYSTEM_ITEMS_KFV supplies the concatenated item and description, and MFG_LOOKUPS is joined twice to decode the count point and backflush lookup meanings. PJM_PROJECT provides project and task name resolution, and FND_PROFILE is referenced for profile-driven behavior.
Key Columns
- JOB_OP_NAME, WIP_ENTITY_NAME, WIP_ENTITY_ID, ORGANIZATION_ID — job/operation identifier and owning organization.
- ITEM_NAME, ITEM_DESCRIPTION, PRIMARY_UOM_CODE — concatenated item flexfield, description, and UOM.
- OPERATION_SEQ_NUM, RESOURCE_SEQ_NUM, RESOURCE_ID, RESOURCE_CODE — routing operation and resource assignment.
- INSTANCE_ID, FULL_NAME, PERSON_ID — the employee resource instance and the person to whom it is assigned.
- FROM_OPERATION_SEQ_NUM, FROM_DEPARTMENT_ID, FROM_DEPARTMENT_CODE, DEPARTMENT_ID, DEPARTMENT_CODE — upstream-to-current routing context for dispatch.
- COUNT_POINT — lookup meaning indicating whether the operation is a count point; the presence of this column is why the view frequently matches searches for count_point.
- BACKFLUSH_FLAG — lookup meaning controlling backflush behavior.
- SCHEDULED_QUANTITY, QUANTITY_IN_QUEUE, QUANTITY_RUNNING, QUANTITY_WAITING_TO_MOVE, QUANTITY_REJECTED, QUANTITY_SCRAPPED, QUANTITY_COMPLETED — operation quantity picture.
- FIRST_UNIT_START_DATE, FIRST_UNIT_COMPLETION_DATE, LAST_UNIT_START_DATE, LAST_UNIT_COMPLETION_DATE, SCHEDULED_START_DATE, SCHEDULED_COMPLETION_DATE — scheduling and actual dates.
- STATUS_TYPE, NODE_TEXT_COLOR, NODE_ICON, OPERATION_CODE, NEXT_OPERATION_SEQ_NUM, PREVIOUS_OPERATION_SEQ_NUM, MINIMUM_TRANSFER_QUANTITY — status and navigation attributes.
Common Use Cases and Queries
Typical uses include employee dispatch lists for a department, count-point verification, and quantity-in-queue reporting. The sample below filters count-point operations for one organization.
SELECT WIP_ENTITY_NAME, OPERATION_SEQ_NUM, DEPARTMENT_CODE, RESOURCE_CODE, FULL_NAME, COUNT_POINT, SCHEDULED_QUANTITY, QUANTITY_RUNNING, QUANTITY_COMPLETED FROM APPS.WIP_INST_EMP_UPS_DISPATCH_V WHERE ORGANIZATION_ID = :org_id AND COUNT_POINT IS NOT NULL ORDER BY WIP_ENTITY_NAME, OPERATION_SEQ_NUM;
A second pattern lists employee instances awaiting dispatch from a feeding operation:
SELECT JOB_OP_NAME, ITEM_NAME, FROM_DEPARTMENT_CODE, DEPARTMENT_CODE, FULL_NAME, INSTANCE_ID FROM APPS.WIP_INST_EMP_UPS_DISPATCH_V WHERE ORGANIZATION_ID = :org_id AND DEPARTMENT_CODE = :dept AND FULL_NAME IS NOT NULL;
Because the view aggregates resource sequences across many joins, consumers should bind ORGANIZATION_ID and job or operation keys, and treat results as read-only.
-
View: WIP_INST_EMP_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EMP_UPS_DISPATCH_V, object_name:WIP_INST_EMP_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Employee resource instance upstream dispatch list , implementation_dba_data: APPS.WIP_INST_EMP_UPS_DISPATCH_V ,
-
View: WIP_RES_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_UPS_DISPATCH_V, object_name:WIP_RES_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Resource upstream dispatch list , implementation_dba_data: APPS.WIP_RES_UPS_DISPATCH_V ,
-
View: WIP_DEPT_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_UPS_DISPATCH_V, object_name:WIP_DEPT_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Department upstream dispatch list , implementation_dba_data: APPS.WIP_DEPT_UPS_DISPATCH_V ,
-
View: WIP_DEPT_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_UPS_DISPATCH_V, object_name:WIP_DEPT_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Department upstream dispatch list , implementation_dba_data: APPS.WIP_DEPT_UPS_DISPATCH_V ,
-
View: WIP_INST_EMP_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EMP_UPS_DISPATCH_V, object_name:WIP_INST_EMP_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Employee resource instance upstream dispatch list , implementation_dba_data: APPS.WIP_INST_EMP_UPS_DISPATCH_V ,
-
View: WIP_RES_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_UPS_DISPATCH_V, object_name:WIP_RES_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Resource upstream dispatch list , implementation_dba_data: APPS.WIP_RES_UPS_DISPATCH_V ,
-
View: WIP_INST_EQP_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EQP_UPS_DISPATCH_V, object_name:WIP_INST_EQP_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Equipment resource instance upstream dispatch list , implementation_dba_data: APPS.WIP_INST_EQP_UPS_DISPATCH_V ,
-
View: WIP_INST_EQP_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EQP_UPS_DISPATCH_V, object_name:WIP_INST_EQP_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Equipment resource instance upstream dispatch list , implementation_dba_data: APPS.WIP_INST_EQP_UPS_DISPATCH_V ,