Search Results available_24_hrs_flag
Overview
WIP_RES_INST_EMPLOYEES_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. As its ETRM description states, it presents "employee resource instances" — that is, the intersection of manufacturing resources that are of the employee type (BOM_RESOURCES.RESOURCE_TYPE = 2) with the specific employees who staff those resources inside a department and organization. The view consolidates department, resource, and person attributes into a single denormalized result set so that shop-floor scheduling, capacity planning, and resource-utilization reporting can join resource data directly to employee identity without navigating the full BOM and HR table hierarchy.
Because it exposes a resolved FULL_NAME and EMPLOYEE_ID alongside resource-level planning attributes, the view is frequently used in custom reports, concurrent program queries, and integration extracts that need to answer "which named employees are available to work a given resource?" It is a read-only view; no DML is permitted against it.
Underlying Base Objects
The view is defined over six documented base objects, all referenced through the APPS schema:
- BOM_DEPARTMENTS (synonym) — supplies
DEPARTMENT_IDandDEPARTMENT_CODE, the owning department of the resource assignment. - BOM_DEPARTMENT_RESOURCES_V (view) — provides department-resource planning attributes such as
CAPACITY_UNITS,CTP_FLAG,EXCEPTION_SET_NAME,ATP_RULE_ID,RESOURCE_GROUP_NAME, andAVAILABLE_24_HOURS_FLAG. - BOM_RESOURCES (synonym) — the master resource definition, contributing
RESOURCE_ID,RESOURCE_CODE, costing, activity, rate, and charge attributes. - BOM_RESOURCE_EMPLOYEES (synonym) — the employee-to-resource assignment bridge, supplying
INSTANCE_IDandPERSON_ID. - PER_ALL_PEOPLE_F (synonym) — the HR person datelist, providing
FULL_NAME. - MFG_LOOKUPS (view) — used three times to decode lookup codes into meanings:
RESOURCE_TYPE(BOM_RESOURCE_TYPE),BASIS_TYPE(CST_BASIS), andAVAILABLE_24_HRS_FLAG(SYS_YES_NO).
Joins are performed on RESOURCE_ID, DEPARTMENT_ID, and ORGANIZATION_ID, with effective-date alignment enforced between PER_ALL_PEOPLE_F and BOM_RESOURCE_EMPLOYEES.
Key Columns
- ORGANIZATION_ID, DEPARTMENT_ID, DEPARTMENT_CODE — organizational context of the resource instance.
- RESOURCE_ID, RESOURCE_CODE — the underlying BOM resource.
- INSTANCE_ID, EMPLOYEE_ID, FULL_NAME — the specific person assigned to the resource instance.
- AVAILABLE_24_HRS_FLAG (
ML2.MEANING) — decoded from SYS_YES_NO; this is the column most commonly searched by users, indicating whether the resource is available around the clock. - CAPACITY_UNITS, RESOURCE_GROUP_NAME, CTP_FLAG, ATP_RULE_ID, EXCEPTION_SET_NAME — planning and scheduling attributes.
- RESOURCE_TYPE, BASIS_TYPE — decoded lookup meanings for resource classification and cost basis.
- SHARE_FROM_DEPARTMENT — derived with NVL, defaulting to the department code.
- Costing columns — COST_ELEMENT_ID, PURCHASE_ITEM_ID, STANDARD_RATE_FLAG, ABSORPTION_ACCOUNT, RATE_VARIANCE_ACCOUNT, EXPENDITURE_TYPE, AUTOCHARGE_TYPE, and ALLOW_COSTS_FLAG.
Common Use Cases and Queries
Typical uses include listing named employees per resource for capacity studies, filtering resources that are available 24 hours, and feeding resource-employee mappings into custom integrations.
List employees staffed to 24-hour resources in an organization:
SELECT resource_code, full_name, employee_id, available_24_hrs_flag FROM apps.wip_res_inst_employees_v WHERE organization_id = :org_id AND available_24_hrs_flag = 'Yes';
Capacity summary by department and resource group:
SELECT department_code, resource_group_name, resource_code,
SUM(capacity_units) total_capacity
FROM apps.wip_res_inst_employees_v
WHERE organization_id = :org_id
GROUP BY department_code, resource_group_name, resource_code;
Search by employee name across departments:
SELECT department_code, resource_code, full_name FROM apps.wip_res_inst_employees_v WHERE full_name LIKE :name_pattern;
Because the view decrypts lookup meanings, report authors can present the AVAILABLE_24_HRS_FLAG and RESOURCE_TYPE values directly to end users without additional lookup joins.
-
View: WIP_RES_INST_EMPLOYEES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_INST_EMPLOYEES_V, object_name:WIP_RES_INST_EMPLOYEES_V, status:VALID, product: WIP - Work in Process , description: Employee resource instances , implementation_dba_data: APPS.WIP_RES_INST_EMPLOYEES_V ,
-
View: WIP_RES_INST_EMPLOYEES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_INST_EMPLOYEES_V, object_name:WIP_RES_INST_EMPLOYEES_V, status:VALID, product: WIP - Work in Process , description: Employee resource instances , implementation_dba_data: APPS.WIP_RES_INST_EMPLOYEES_V ,
-
View: WIP_DEPT_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_RESOURCES_V, object_name:WIP_DEPT_RESOURCES_V, status:VALID, product: WIP - Work in Process , description: Resources owned by a department , implementation_dba_data: APPS.WIP_DEPT_RESOURCES_V ,
-
View: WIP_DEPT_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_RESOURCES_V, object_name:WIP_DEPT_RESOURCES_V, status:VALID, product: WIP - Work in Process , description: Resources owned by a department , implementation_dba_data: APPS.WIP_DEPT_RESOURCES_V ,
-
View: WIP_RES_INST_EQUIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_INST_EQUIPMENTS_V, object_name:WIP_RES_INST_EQUIPMENTS_V, status:VALID, product: WIP - Work in Process , description: Equipment resource instances , implementation_dba_data: APPS.WIP_RES_INST_EQUIPMENTS_V ,
-
VIEW: APPS.WIP_DEPT_RESOURCES_V
12.1.1
-
View: WIP_RES_INST_EQUIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_INST_EQUIPMENTS_V, object_name:WIP_RES_INST_EQUIPMENTS_V, status:VALID, product: WIP - Work in Process , description: Equipment resource instances , implementation_dba_data: APPS.WIP_RES_INST_EQUIPMENTS_V ,
-
VIEW: APPS.WIP_RES_INST_EQUIPMENTS_V
12.1.1
-
VIEW: APPS.WIP_DEPT_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_RESOURCES_V, object_name:WIP_DEPT_RESOURCES_V, status:VALID,
-
VIEW: APPS.WIP_DEPT_RESOURCES_V
12.2.2
-
VIEW: APPS.WIP_RES_INST_EQUIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_INST_EQUIPMENTS_V, object_name:WIP_RES_INST_EQUIPMENTS_V, status:VALID,
-
VIEW: APPS.WIP_RES_INST_EQUIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_INST_EQUIPMENTS_V, object_name:WIP_RES_INST_EQUIPMENTS_V, status:VALID,
-
VIEW: APPS.WIP_DEPT_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_RESOURCES_V, object_name:WIP_DEPT_RESOURCES_V, status:VALID,
-
VIEW: APPS.WIP_RES_INST_EMPLOYEES_V
12.1.1
-
VIEW: APPS.WIP_RES_INST_EMPLOYEES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_INST_EMPLOYEES_V, object_name:WIP_RES_INST_EMPLOYEES_V, status:VALID,
-
VIEW: APPS.WIP_RES_INST_EMPLOYEES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_INST_EMPLOYEES_V, object_name:WIP_RES_INST_EMPLOYEES_V, status:VALID,
-
VIEW: APPS.WIP_RES_INST_EMPLOYEES_V
12.2.2
-
VIEW: APPS.WIP_RES_INST_EQUIPMENTS_V
12.2.2
-
eTRM - WIP Tables and Views
12.1.1
-
eTRM - WIP Tables and Views
12.2.2