Search Results cstbv_matl_cost_sub_element
Overview
The APPS.CSTBV_MATL_COST_SUB_ELEMENT view is a reporting and integration construct within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 releases, owned by the APPS schema and associated with the BOM (Bills of Material) product family. As documented in the ETRM metadata, the object is a VIEW with a status of VALID and carries the description "Retrofitted," indicating that it was re-engineered or reintroduced to support cost sub-element extraction against the standard BOM schema. The view exposes material cost sub-element attributes derived from BOM resources, specifically those linked to a cost element, and is defined WITH READ ONLY, signalling its intended use as a query-only, read-consistent surface for reporting, integration, and drill-down rather than transactional maintenance.
Underlying Base Objects
Per the documented metadata, the view is defined over a single referenced base object: the BOM_RESOURCES synonym. The view text selects from BOM_RESOURCES (aliased BR) with a fixed filter predicate of BR.COST_ELEMENT_ID = 1 and an additional security predicate expressed as '_SEC:BR.ORGANIZATION_ID' IS NOT NULL. The COST_ELEMENT_ID = 1 restriction constrains the result set to resources whose cost element corresponds to Material, effectively isolating material-type resource cost sub-elements from the broader BOM_RESOURCES population. The security predicate is a standard EBS row-level security substitution token resolved at runtime, ensuring that rows are returned only for organizations the querying responsibility is authorized to access.
Key Columns
The view projects a curated set of resource attributes alongside derived and descriptive columns:
- RESOURCE_ID — Primary identifier of the BOM resource row.
- RESOURCE_CODE — The user-defined or system resource code identifying the sub-element.
- DESCRIPTION — Descriptive text for the resource.
- DISABLE_DATE — Date on which the resource is inactivated, supporting historical and as-of reporting.
- EXPENDITURE_TYPE — Expenditure classification associated with the resource.
- "_LA:DEFAULT_BASIS_TYPE" — A lookup-driven column resolving DEFAULT_BASIS_TYPE through the MFG_LOOKUPS lookup type CST_BASIS, returning the MEANING.
- "_LA:COST_CODE_TYPE" — A lookup-driven column resolving COST_CODE_TYPE through MFG_LOOKUPS lookup type CST_COST_CODE_TYPE, returning the MEANING.
- ORGANIZATION_ID — Inventory organization context, and the anchor for row-level security.
- DEFAULT_ACTIVITY_ID — Default activity associated with the resource.
- CREATED_DATE, CREATED_BY, UPDATED_DATE, UPDATED_BY — WHO-column audit attributes (mapped from CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY).
Common Use Cases and Queries
This view is typically used in cost sub-element reporting, cost rollup validation, and integration extracts that require material cost sub-elements by organization. Because it is read-only and secured by organization, it is suitable for concurrent-program extracts and BI Publisher data models.
Example: retrieve active material cost sub-elements for a given organization.
SELECT resource_code, description, expenditure_type, default_activity_idFROM apps.cstbv_matl_cost_sub_elementWHERE organization_id = :p_org_idAND (disable_date IS NULL OR disable_date > SYSDATE)ORDER BY resource_code;
Example: join to lookups for cost basis interpretation.
SELECT c.resource_code, c."_LA:DEFAULT_BASIS_TYPE" basis, c."_LA:COST_CODE_TYPE" cost_codeFROM apps.cstbv_matl_cost_sub_element cWHERE c.organization_id = :p_org_id;
In all cases, the effective result set is bounded by the COST_ELEMENT_ID = 1 filter and by the organization security token enforced within the view definition.
-
View: CSTBV_MATL_COST_SUB_ELEMENT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_MATL_COST_SUB_ELEMENT, object_name:CSTBV_MATL_COST_SUB_ELEMENT, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_MATL_COST_SUB_ELEMENT ,
-
View: CSTBV_MATL_COST_SUB_ELEMENT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_MATL_COST_SUB_ELEMENT, object_name:CSTBV_MATL_COST_SUB_ELEMENT, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_MATL_COST_SUB_ELEMENT ,
-
VIEW: APPS.CSTBV_MATL_COST_SUB_ELEMENT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_MATL_COST_SUB_ELEMENT, object_name:CSTBV_MATL_COST_SUB_ELEMENT, status:VALID,
-
VIEW: APPS.CSTBV_MATL_COST_SUB_ELEMENT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_MATL_COST_SUB_ELEMENT, object_name:CSTBV_MATL_COST_SUB_ELEMENT, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.BOM_RESOURCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_RESOURCES, status:VALID,
-
SYNONYM: APPS.BOM_RESOURCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_RESOURCES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.1.1
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.1.1
description: Table to map wip transactions to their corresponding event types. ,