Search Results default_activity
Overview
CSTFV_MATL_COST_SUB_ELEMENT is an Oracle E-Business Suite business intelligence view owned by the APPS schema, registered under the FND Design Data reference BOM.CSTFV_MATL_COST_SUB_ELEMENT. Its status is VALID in both 12.1.1 and 12.2.2. The view exposes material cost subelement definitions — the resources, overheads, and activity assignments used by Oracle Cost Management and Bills of Material to determine how material costs are accumulated, defaulted, and posted. In EBS terminology, a material subelement is a cost element component used to break down and default the cost of a resource or item, and this view presents that information in a flattened, report-friendly format.
Because it is a view rather than a base table, it carries no storage of its own and is intended strictly for read access. It supports reporting, data extraction, and integration scenarios where external systems or custom concurrent programs require the resource-to-activity and organization-level context of material subelements. It should not be treated as a transactional interface for direct DML.
Underlying Base Objects
The view is defined over four documented base objects, each referenced as an APPS synonym:
- BOM_RESOURCES — the primary source of resource definitions, including resource code, description, disable date, and expenditure type.
- CST_ACTIVITIES — supplies the activity definition, including the default activity and its identifier, used when the resource is consumed in a costing or manufacturing transaction.
- HR_ALL_ORGANIZATION_UNITS — provides the organization name and related descriptive attributes for the owning inventory organization.
- MTL_PARAMETERS — links the inventory organization context and supplies the organization identifier used to join the resource to its owning organization.
The view is not referenced by any other database object, so it sits at the top of the dependency tree. This confirms its role as a terminal reporting object rather than a building block for further views.
Key Columns
- RESOURCE_ID / RESOURCE_CODE — the surrogate key and user-facing identifier of the material subelement resource.
- DESCRIPTION — the resource description, up to 240 characters.
- DISABLE_DATE — the date on which the subelement becomes inactive.
- EXPENDITURE_TYPE — the expenditure type used for cost collection and accounting.
- _LA:DEFAULT_BASIS_TYPE and _LA:COST_CODE_TYPE — descriptive-flexfield attribute columns (_LA denotes a descriptive flexfield attribute), exposing the default basis type and cost code type.
- DEFAULT_ACTIVITY / DEFAULT_ACTIVITY_ID — the activity code and its internal identifier that defaults onto the resource for activity-based costing. This column pair answers the frequently searched term "default_activity."
- ORGANIZATION_CODE / ORGANIZATION_NAME / ORGANIZATION_ID — the inventory organization context in which the subelement is defined.
- _DF — the descriptive flexfield context column for the view.
- CREATED_DATE, CREATED_BY, UPDATED_DATE, UPDATED_BY — standard audit columns.
Common Use Cases and Queries
Typical uses include auditing which default activity is assigned to each material subelement, validating activity-based costing setups across organizations, and feeding external cost engines. The query below lists active subelements with their default activity per organization.
SELECT RESOURCE_CODE, DESCRIPTION, EXPENDITURE_TYPE, DEFAULT_ACTIVITY, ORGANIZATION_CODE, ORGANIZATION_NAME
FROM APPS.CSTFV_MATL_COST_SUB_ELEMENT
WHERE DISABLE_DATE IS NULL
ORDER BY ORGANIZATION_CODE, RESOURCE_CODE;
To identify subelements that have no default activity assigned, a common data-quality check:
SELECT RESOURCE_CODE, ORGANIZATION_CODE, DEFAULT_ACTIVITY
FROM APPS.CSTFV_MATL_COST_SUB_ELEMENT
WHERE DEFAULT_ACTIVITY_ID IS NULL;
Because the view is read-only and joins four base tables, queries should filter on ORGANIZATION_ID where possible to reduce the join cost against HR_ALL_ORGANIZATION_UNITS and MTL_PARAMETERS.
-
VIEW: APPS.CSTFV_MATL_COST_SUB_ELEMENT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_MATL_COST_SUB_ELEMENT, object_name:CSTFV_MATL_COST_SUB_ELEMENT, status:VALID,
-
View: BOM_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_RESOURCES_V, object_name:BOM_RESOURCES_V, status:VALID, product: BOM - Bills of Material , description: Resources, overheads, material cost codes, and material overheads , implementation_dba_data: APPS.BOM_RESOURCES_V ,
-
View: BOM_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_RESOURCES_V, object_name:BOM_RESOURCES_V, status:VALID, product: BOM - Bills of Material , description: Resources, overheads, material cost codes, and material overheads , implementation_dba_data: APPS.BOM_RESOURCES_V ,
-
VIEW: APPS.BOM_RESOURCES_V
12.1.1
-
VIEW: APPS.CSTFV_MATL_COST_SUB_ELEMENT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_MATL_COST_SUB_ELEMENT, object_name:CSTFV_MATL_COST_SUB_ELEMENT, status:VALID,
-
VIEW: APPS.BOM_RESOURCES_V
12.2.2
-
View: CSTFV_MATL_COST_SUB_ELEMENT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_MATL_COST_SUB_ELEMENT, object_name:CSTFV_MATL_COST_SUB_ELEMENT, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_MATL_COST_SUB_ELEMENT ,
-
View: CSTFV_MATL_COST_SUB_ELEMENT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_MATL_COST_SUB_ELEMENT, object_name:CSTFV_MATL_COST_SUB_ELEMENT, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_MATL_COST_SUB_ELEMENT ,
-
VIEW: APPS.BOM_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_RESOURCES_V, object_name:BOM_RESOURCES_V, status:VALID,
-
VIEW: APPS.BOM_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_RESOURCES_V, object_name:BOM_RESOURCES_V, status:VALID,
-
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. ,