Search Results owning_department_code
Overview
APPS.MTL_EAM_EQUIP_RESOURCES_V is a reporting and integration view in Oracle E-Business Suite (EAM / Enterprise Asset Management) that consolidates equipment resource definitions together with the department context in which each equipment instance is used. Rather than requiring consumers to join the underlying BOM resource, department, and instance tables directly, the view presents a denormalized, ready-to-use result set in which each row describes an equipment resource identified by organization, resource, instance, and department.
The view is defined as a UNION of two branches. The first branch derives its data from the BOM resource and department tables within the EAM schema; the second branch selects the equivalent columns from GMP_EAM_EQUIP_RESOURCES_V, which serves the process manufacturing (OPM) side of the application. This union strategy provides a single, consistent access point for equipment resource data across discrete and process manufacturing deployments, making the view suitable for reporting, discovery, and integration layers that must not be coupled to either source model separately.
The name of the view, together with its department-oriented columns, aligns with the user search term "share_from_dept_code." The view exposes both the raw identifier (SHARE_FROM_DEPT_ID) and the corresponding department code (SHARE_FROM_DEPT_CODE), which represents the department from which equipment capacity is shared. A related computed column, OWNING_DEPARTMENT_CODE, resolves the effective owning department when sharing is in effect.
Underlying Base Objects
Per the documented view metadata, the following base objects are referenced:
- BOM_RESOURCE_EQUIPMENTS — links resources to specific equipment instances and inventory items.
- BOM_RESOURCES — supplies the resource code, description, unit of measure, and autocharge type.
- BOM_DEPT_RES_INSTANCES — associates a resource instance with a department and serial number.
- BOM_DEPARTMENT_RESOURCES — holds the department-to-resource assignment, capacity units, and sharing attributes such as SHARE_FROM_DEPT_ID and SHARE_CAPACITY_FLAG.
- BOM_DEPARTMENTS — referenced twice, once as the primary department (BD) and once as the sharing/owning department (BD1, outer-joined on SHARE_FROM_DEPT_ID).
- GMP_EAM_EQUIP_RESOURCES_V — provides the process manufacturing rows combined via UNION.
The join condition uses DECODE(BDR.SHARE_FROM_DEPT_ID, NULL, BDR.DEPARTMENT_ID, BDR.SHARE_FROM_DEPT_ID) = BDRI.DEPARTMENT_ID, so the instance's department is matched to the owning department when no sharing is defined, and to the sharing department when sharing is in effect.
h4>Key Columns- ROW_ID — the ROWID of the driving BOM_DEPARTMENT_RESOURCES row.
- ORGANIZATION_ID, INVENTORY_ITEM_ID, SERIAL_NUMBER — identify the organization and the specific equipment item instance.
- RESOURCE_ID, RESOURCE_CODE, DESCRIPTION — the resource identity and descriptive text.
- INSTANCE_ID — the equipment instance associated with the resource.
- DEPARTMENT_ID, DEPARTMENT_CODE — the department recorded against the resource assignment.
- SHARE_FROM_DEPT_ID, SHARE_FROM_DEPT_CODE — the department whose capacity is shared (the subject of the user's search); null when no sharing applies.
- OWNING_DEPARTMENT_CODE — computed via DECODE(BD1.DEPARTMENT_CODE, NULL, BD.DEPARTMENT_CODE, BD1.DEPARTMENT_CODE), returning the sharing department code when present, otherwise the primary department code.
- CAPACITY_UNITS, AVAILABLE_24_HOURS_FLAG, SHARE_CAPACITY_FLAG — capacity and scheduling attributes governing availability and whether capacity is shared.
- RESOURCE_GROUP_NAME, UNIT_OF_MEASURE, AUTOCHARGE_TYPE, CTP_FLAG, SCHEDULE_TO_INSTANCE — additional planning and scheduling characteristics.
A frequent requirement is identifying which equipment resources draw capacity from another department — a direct application of the SHARE_FROM_DEPT_CODE column. The following query lists equipment resources together with their owning and sharing departments:
- SELECT organization_id, resource_code, instance_id, department_code, share_from_dept_code, owning_department_code FROM apps.mtl_eam_equip_resources_v WHERE share_from_dept_code IS NOT NULL;
For capacity planning, filter on sharing and availability flags:
- SELECT resource_code, department_code, capacity_units, available_24_hours_flag FROM apps.mtl_eam_equip_resources_v WHERE share_capacity_flag = 'Y'
To restrict reporting to a single organization or resource, add predicates on ORGANIZATION_ID or RESOURCE_ID. Integration consumers can safely use OWNING_DEPARTMENT_CODE as the canonical department for a resource instance regardless of whether sharing is configured, since the view resolves that logic on the database side.
-
VIEW: APPS.MTL_EAM_EQUIP_RESOURCES_V
12.2.2
-
VIEW: APPS.MTL_EAM_EQUIP_RESOURCES_V
12.1.1
-
View: MTL_EAM_EQUIP_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_EQUIP_RESOURCES_V, object_name:MTL_EAM_EQUIP_RESOURCES_V, status:VALID, product: INV - Inventory , description: View for EAM equipment resources , implementation_dba_data: APPS.MTL_EAM_EQUIP_RESOURCES_V ,
-
View: MTL_EAM_EQUIP_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_EQUIP_RESOURCES_V, object_name:MTL_EAM_EQUIP_RESOURCES_V, status:VALID, product: INV - Inventory , description: View for EAM equipment resources , implementation_dba_data: APPS.MTL_EAM_EQUIP_RESOURCES_V ,
-
VIEW: APPS.MRPFV_PLAN_DEPT_RESOURCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_DEPT_RESOURCES, object_name:MRPFV_PLAN_DEPT_RESOURCES, status:VALID,
-
VIEW: MSC.MSC_ST_DEPARTMENT_RESOURCES#
12.2.2
-
VIEW: INV.MTL_EAM_ASSET_NUM_INTERFACE#
12.2.2
-
VIEW: APPS.MRPFV_PLAN_DEPT_RESOURCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_DEPT_RESOURCES, object_name:MRPFV_PLAN_DEPT_RESOURCES, status:VALID,
-
VIEW: WIP.WIP_JOB_SCHEDULE_INTERFACE#
12.2.2
-
View: MTL_EAM_ASSET_NUM_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_NUM_INTERFACE_V, object_name:MTL_EAM_ASSET_NUM_INTERFACE_V, status:VALID, product: INV - Inventory , description: Asset Number Interface View , implementation_dba_data: APPS.MTL_EAM_ASSET_NUM_INTERFACE_V ,
-
View: MTL_EAM_ASSET_NUM_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_NUM_INTERFACE_V, object_name:MTL_EAM_ASSET_NUM_INTERFACE_V, status:VALID, product: INV - Inventory , description: Asset Number Interface View , implementation_dba_data: APPS.MTL_EAM_ASSET_NUM_INTERFACE_V ,
-
Lookup Type: MSC_RESOURCE_LINES
12.1.1
product: MSC - Advanced Supply Chain Planning , meaning: For Resources , description: Field Prompts used for Personal Queries ,
-
VIEW: APPS.GMP_EAM_EQUIP_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_EAM_EQUIP_RESOURCES_V, object_name:GMP_EAM_EQUIP_RESOURCES_V, status:VALID,
-
VIEW: APPS.MTL_EAM_EQUIP_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_EQUIP_RESOURCES_V, object_name:MTL_EAM_EQUIP_RESOURCES_V, status:VALID,
-
VIEW: APPS.MTL_EAM_EQUIP_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_EQUIP_RESOURCES_V, object_name:MTL_EAM_EQUIP_RESOURCES_V, status:VALID,
-
VIEW: APPS.GMP_EAM_EQUIP_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_EAM_EQUIP_RESOURCES_V, object_name:GMP_EAM_EQUIP_RESOURCES_V, status:VALID,
-
Lookup Type: MSC_RESOURCE_LINES
12.2.2
product: MSC - Advanced Supply Chain Planning , meaning: For Resources , description: Field Prompts used for Personal Queries ,
-
VIEW: APPS.MTL_EAM_ASSET_NUM_INTERFACE_V
12.1.1
-
VIEW: APPS.MTL_EAM_ASSET_NUM_INTERFACE_V
12.2.2
-
View: MRPFV_PLAN_DEPT_RESOURCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_DEPT_RESOURCES, object_name:MRPFV_PLAN_DEPT_RESOURCES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_PLAN_DEPT_RESOURCES ,
-
View: GMP_EAM_EQUIP_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_EAM_EQUIP_RESOURCES_V, object_name:GMP_EAM_EQUIP_RESOURCES_V, status:VALID, product: GMP - Process Manufacturing Process Planning , implementation_dba_data: APPS.GMP_EAM_EQUIP_RESOURCES_V ,
-
View: MRPFV_PLAN_DEPT_RESOURCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_DEPT_RESOURCES, object_name:MRPFV_PLAN_DEPT_RESOURCES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_PLAN_DEPT_RESOURCES ,
-
VIEW: APPS.MSC_PLANNED_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PLANNED_RESOURCES_V, object_name:MSC_PLANNED_RESOURCES_V, status:VALID,
-
VIEW: MSC.MSC_ST_DEPARTMENT_RESOURCES#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_ST_DEPARTMENT_RESOURCES#, status:VALID,
-
View: GMP_EAM_EQUIP_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_EAM_EQUIP_RESOURCES_V, object_name:GMP_EAM_EQUIP_RESOURCES_V, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Equipment to resource mapping view , implementation_dba_data: APPS.GMP_EAM_EQUIP_RESOURCES_V ,
-
VIEW: WIP.WIP_JOB_SCHEDULE_INTERFACE#
12.2.2
owner:WIP, object_type:VIEW, object_name:WIP_JOB_SCHEDULE_INTERFACE#, status:VALID,
-
VIEW: APPS.CRP_PLANNED_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CRP.CRP_PLANNED_RESOURCES_V, object_name:CRP_PLANNED_RESOURCES_V, status:VALID,
-
VIEW: APPS.CRP_PLANNED_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CRP.CRP_PLANNED_RESOURCES_V, object_name:CRP_PLANNED_RESOURCES_V, status:VALID,
-
VIEW: APPS.EAM_OUTSTANDING_WORK_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_OUTSTANDING_WORK_ORDERS_V, object_name:EAM_OUTSTANDING_WORK_ORDERS_V, status:VALID,
-
VIEW: APPS.MSC_PLANNED_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PLANNED_RESOURCES_V, object_name:MSC_PLANNED_RESOURCES_V, status:VALID,
-
VIEW: INV.MTL_EAM_ASSET_NUM_INTERFACE#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_EAM_ASSET_NUM_INTERFACE#, status:VALID,
-
VIEW: APPS.MTL_EAM_ASSET_NUM_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_NUM_INTERFACE_V, object_name:MTL_EAM_ASSET_NUM_INTERFACE_V, status:VALID,
-
View: CRP_PLANNED_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CRP.CRP_PLANNED_RESOURCES_V, object_name:CRP_PLANNED_RESOURCES_V, status:VALID, product: CRP - Capacity , description: View of resources used for a plan , implementation_dba_data: APPS.CRP_PLANNED_RESOURCES_V ,
-
VIEW: APPS.MTL_EAM_ASSET_NUM_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_NUM_INTERFACE_V, object_name:MTL_EAM_ASSET_NUM_INTERFACE_V, status:VALID,
-
View: CRP_PLANNED_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CRP.CRP_PLANNED_RESOURCES_V, object_name:CRP_PLANNED_RESOURCES_V, status:VALID, product: CRP - Capacity , description: View of resources used for a plan , implementation_dba_data: APPS.CRP_PLANNED_RESOURCES_V ,
-
VIEW: APPS.EAM_OUTSTANDING_WORK_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_OUTSTANDING_WORK_ORDERS_V, object_name:EAM_OUTSTANDING_WORK_ORDERS_V, status:VALID,
-
View: EAM_OUTSTANDING_WORK_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_OUTSTANDING_WORK_ORDERS_V, object_name:EAM_OUTSTANDING_WORK_ORDERS_V, status:VALID, product: EAM - Enterprise Asset Management , description: View shows work orders forecasted by Preventive Maintenance scheduling. , implementation_dba_data: APPS.EAM_OUTSTANDING_WORK_ORDERS_V ,
-
View: EAM_WORK_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ORDERS_V, object_name:EAM_WORK_ORDERS_V, status:VALID, product: EAM - Enterprise Asset Management , description: View shows all maintenance work orders along with the work requests/service requests associated to them. , implementation_dba_data: APPS.EAM_WORK_ORDERS_V ,
-
TABLE: MSC.MSC_ST_DEPARTMENT_RESOURCES
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_DEPARTMENT_RESOURCES, object_name:MSC_ST_DEPARTMENT_RESOURCES, status:VALID,
-
TABLE: MSC.MSC_ST_DEPARTMENT_RESOURCES
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_DEPARTMENT_RESOURCES, object_name:MSC_ST_DEPARTMENT_RESOURCES, status:VALID,
-
View: EAM_WORK_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ORDERS_V, object_name:EAM_WORK_ORDERS_V, status:VALID, product: EAM - Enterprise Asset Management , description: View shows all maintenance work orders alongwith the service requests associated to them , implementation_dba_data: APPS.EAM_WORK_ORDERS_V ,
-
View: EAM_OUTSTANDING_WORK_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_OUTSTANDING_WORK_ORDERS_V, object_name:EAM_OUTSTANDING_WORK_ORDERS_V, status:VALID, product: EAM - Enterprise Asset Management , description: View shows work orders forecasted by Preventive Maintenance scheduling. , implementation_dba_data: APPS.EAM_OUTSTANDING_WORK_ORDERS_V ,
-
TABLE: INV.MTL_EAM_ASSET_NUM_INTERFACE
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_EAM_ASSET_NUM_INTERFACE, object_name:MTL_EAM_ASSET_NUM_INTERFACE, status:VALID,
-
TABLE: INV.MTL_EAM_ASSET_NUM_INTERFACE
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_EAM_ASSET_NUM_INTERFACE, object_name:MTL_EAM_ASSET_NUM_INTERFACE, status:VALID,
-
VIEW: APPS.EAM_WORK_ORDERS_V
12.2.2
-
TABLE: WIP.WIP_JOB_SCHEDULE_INTERFACE
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_JOB_SCHEDULE_INTERFACE, object_name:WIP_JOB_SCHEDULE_INTERFACE, status:VALID,
-
TABLE: WIP.WIP_JOB_SCHEDULE_INTERFACE
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_JOB_SCHEDULE_INTERFACE, object_name:WIP_JOB_SCHEDULE_INTERFACE, status:VALID,
-
VIEW: APPS.EAM_WORK_ORDERS_V
12.1.1
-
View: MSC_PLANNED_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PLANNED_RESOURCES_V, object_name:MSC_PLANNED_RESOURCES_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This view shows all the resources used in a plan , implementation_dba_data: APPS.MSC_PLANNED_RESOURCES_V ,
-
VIEW: APPS.EAM_WORK_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ORDERS_V, object_name:EAM_WORK_ORDERS_V, status:VALID,