Search Results edw_bres_resource_lcv
Overview
EDW_BRES_RESOURCE_LCV is a view owned by the APPS schema in Oracle E-Business Suite, classified under the Engineering (ENG) product module with a VALID status in both 12.1.1 and 12.2.2. The "EDW" prefix and the "LCV" (local consumer view) suffix indicate that it is a reporting-facing object designed for the Oracle Business Intelligence / Enterprise Data Warehouse extract layer rather than an operational forms object. Its stated purpose is simply to "hold resource information," and the view text confirms this: it consolidates work-center level resources defined in Oracle Bills of Material and Engineering.
The view serves as a flattened, denormalized staging source for downstream reporting and integration. Rather than requiring the reporting layer to join department, resource, organization, and instance tables directly, EDW_BRES_RESOURCE_LCV pre-joins them and concatenates the descriptive keys into human-readable composite identifiers. This makes it suitable for dimensional extracts where resource, department, organization, and instance must be presented as a single labeled key.
Underlying Base Objects
Although the ETRM 12.2.2 metadata records "none documented" for referenced base objects, the view text establishes the actual dependency set. The primary branch is a four-table inner join:
- BOM_DEPARTMENTS DEPT — joined on DEPARTMENT_ID.
- BOM_DEPARTMENT_RESOURCES DRE — the bridge linking departments to resources, joined on DEPARTMENT_ID and RESOURCE_ID.
- BOM_RESOURCES RES — joined on RESOURCE_ID; carries RESOURCE_CODE, RESOURCE_TYPE, and DESCRIPTION.
- MTL_PARAMETERS MP — supplies ORGANIZATION_CODE; joined via RES.ORGANIZATION_ID = MP.ORGANIZATION_ID.
- MFG_LOOKUPS RT — decoded resource type, constrained to LOOKUP_TYPE = 'BOM_RESOURCE_TYPE'.
- EDW_LOCAL_INSTANCE INST — provides INSTANCE_CODE for multi-instance labeling.
A second, UNION ALL branch introduces line-based resources drawn from an aliased line object (L), exposing LINE_CODE, MINIMUM_RATE, and MAXIMUM_RATE while substituting 'NA_EDW' placeholders for department and resource-group columns. The filter clause restricts rows to those whose RESOURCE or DEPARTMENT_RESOURCE records have a LAST_UPDATE_DATE later than 1000/01/01, effectively excluding never-maintained rows from the extract.
Key Columns
The projection establishes a stable column contract for consumers:
- Composite resource key — RESOURCE_CODE concatenated with DEPARTMENT_CODE, ORGANIZATION_CODE, and INSTANCE_CODE.
- INSTANCE_CODE — identifies the originating EBS instance for warehouse consolidation.
- Resource group name — DRE.RESOURCE_GROUP_NAME, defaulted to 'NA_EDW' when null.
- Formatted department/resource descriptions — patterns such as DEPARTMENT(RESOURCE(ORG)) and DEPARTMENT(MEANING(ORG)), where MEANING is the decoded MFG_LOOKUPS value.
- RES.DESCRIPTION — free-text resource description.
- Availability flag — DECODE of AVAILABLE_24_HOURS_FLAG to 'Y'/'N'.
- Audit dates — GREATEST of DRE and RES last-update dates, plus creation date.
- MINIMUM_RATE / MAXIMUM_RATE — numeric rate bands returned only for the line-resource branch; NULL for the department branch.
Common Use Cases and Queries
The most frequent consumer requirement is identifying the cost or billing rate window associated with a resource — precisely the "minimum_rate" search that led here. The RATE columns reside on the second UNION branch, so a query must tolerate NULLs on department rows:
- Rate band lookup: SELECT composite_key, minimum_rate, maximum_rate FROM apps.edw_bres_resource_lcv WHERE minimum_rate IS NOT NULL;
- Departmental resource roster: SELECT * FROM apps.edw_bres_resource_lcv WHERE composite_key NOT LIKE '%NA_EDW%';
- Instance-scoped extract: adding WHERE instance_code = :instance to scope a warehouse load.
- Incremental refresh: filtering on the last-update column to pull only recently changed resources.
Because the view performs functions and concatenation, predicates on the composite key are non-sargable; report authors should filter on constituent columns via the base tables where performance is critical. Note also that NULL rates arise structurally, not from missing data, so downstream logic must distinguish the two branches.
-
View: EDW_BRES_RESOURCE_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.EDW_BRES_RESOURCE_LCV, object_name:EDW_BRES_RESOURCE_LCV, status:VALID, product: ENG - Engineering , description: This view holds resource information , implementation_dba_data: APPS.EDW_BRES_RESOURCE_LCV ,
-
View: EDW_BRES_RESOURCE_LCV
12.2.2
product: ENG - Engineering , description: This view holds resource information , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.EDW_BOM_RES_M_C
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDW_BOM_RES_M_C, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.CR_RSRC_MST
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CR_RSRC_MST, status:VALID,
-
VIEW: APPS.EDW_BRES_RESOURCE_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.EDW_BRES_RESOURCE_LCV, object_name:EDW_BRES_RESOURCE_LCV, status:VALID,
-
SYNONYM: APPS.BOM_DEPARTMENT_RESOURCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_DEPARTMENT_RESOURCES, status:VALID,
-
SYNONYM: APPS.WIP_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_LINES, status:VALID,
-
SYNONYM: APPS.EDW_LOCAL_INSTANCE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:EDW_LOCAL_INSTANCE, status:VALID,
-
SYNONYM: APPS.BOM_RESOURCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_RESOURCES, status:VALID,
-
SYNONYM: APPS.BOM_DEPARTMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_DEPARTMENTS, status:VALID,
-
APPS.EDW_BOM_RES_M_C SQL Statements
12.1.1
-
APPS.EDW_BOM_RES_M_C dependencies on EDW_BRES_RESOURCE_LCV
12.1.1
-
VIEW: APPS.MFG_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
PACKAGE BODY: APPS.EDW_BOM_RES_M_C
12.1.1
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
eTRM - ENG Tables and Views
12.1.1
description: Change type organization properties ,
-
APPS.EDW_BOM_RES_M_C dependencies on EDW_LOG
12.1.1
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - ENG Tables and Views
12.1.1
description: Change type organization properties ,
-
eTRM - INV Tables and Views
12.1.1