Search Results cost_group_description
Overview
MTL_FISCAL_CAT_ACCOUNTS_V is an APPS-owned, VALID database view within the INV (Inventory) product family of Oracle E-Business Suite. Its documented description is "PAC Category Accounts," reflecting its purpose: presenting the Periodic Average Costing (PAC) account mapping that associates a legal entity, cost type, cost group, and inventory category with the set of general ledger accounts used to record inventory and manufacturing transactions. The view joins the fiscal category accounts base table with descriptive attributes — cost type, cost group, category, legal entity, and set of books — so that account assignment data is exposed in a denormalized, user-readable form.
In both EBS 12.1.1 and 12.2.2, this view serves reporting, inquiry, and integration functions. Rather than querying the underlying normalized tables directly, developers, report authors, and interface designers can retrieve the account mapping alongside the human-readable names and descriptions required by users. Because it surfaces the column COST_GROUP_DESCRIPTION (sourced from CST_COST_GROUPS.DESCRIPTION), it is the principal object queried when a user searches for cost group description information in the context of inventory cost accounts.
Underlying Base Objects
The view text defines joins across seven documented base objects, each referenced as a synonym or view under APPS:
- MTL_FISCAL_CAT_ACCOUNTS (SYNONYM) — the driving table, aliased MFC, holding the actual account assignments keyed by legal entity, cost type, cost group, and category.
- CST_COST_GROUPS (SYNONYM) — aliased CCG; supplies COST_GROUP, DESCRIPTION (exposed as COST_GROUP_DESCRIPTION), and the legal entity linkage.
- CST_COST_TYPES (SYNONYM) — aliased CCT; supplies COST_TYPE and COST_TYPE_DESCRIPTION.
- CST_LE_COST_TYPES (SYNONYM) — aliased CLCT; associates the legal entity and cost type with a set of books.
- GL_SETS_OF_BOOKS (VIEW) — aliased GSOB; supplies SET_OF_BOOKS_NAME and CHART_OF_ACCOUNTS_ID.
- MTL_CATEGORIES (SYNONYM) — aliased MC; supplies CATEGORY_DESCRIPTION.
- XLE_FIRSTPARTY_INFORMATION_V (VIEW) — aliased XLE; supplies the LEGAL_ENTITY name.
Join conditions are enforced on cost group ID plus legal entity, category ID, cost type ID, legal entity plus cost type (through CST_LE_COST_TYPES), set of books ID, and legal entity ID. The view exposes the MFC.ROWID as ROW_ID.
Key Columns
- ROW_ID — row identifier derived from the base table ROWID.
- LEGAL_ENTITY_ID / LEGAL_ENTITY — the operating unit legal entity and its resolved name.
- COST_TYPE_ID / COST_TYPE / COST_TYPE_DESCRIPTION — the costing method identity and description.
- COST_GROUP_ID / COST_GROUP_NAME / COST_GROUP_DESCRIPTION — the cost group identity, name, and description; the latter is the primary target of cost_group_description searches.
- CATEGORY_ID / CATEGORY_DESCRIPTION — the inventory category and its description.
- MATERIAL_ACCOUNT, MATERIAL_OVERHEAD_ACCOUNT, RESOURCE_ACCOUNT, OUTSIDE_PROCESSING_ACCOUNT, OVERHEAD_ACCOUNT, EXPENSE_ACCOUNT, BRIDGING_ACCOUNT — the GL account codes for each transaction type.
- NON_INVOICED_SO_ACCOUNT, NON_INVOICED_REVENUE_ACCOUNT — accounts for non-invoiced sales order and revenue activity.
- SET_OF_BOOKS_NAME, CHART_OF_ACCOUNTS_ID — the ledger and chart of accounts context.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical scenarios include verifying account assignments before costing period close, generating account mapping reports by legal entity or cost group, and extracting mappings for integration with external systems. A representative query retrieving cost group descriptions for a legal entity is:
SELECT legal_entity, cost_type, cost_group_name, cost_group_description, category_description, material_account, material_overhead_account, resource_account, overhead_account FROM mtl_fiscal_cat_accounts_v WHERE legal_entity_id = :p_legal_entity_id ORDER BY cost_group_name, category_description;SELECT cost_group_name, cost_group_description, set_of_books_name, chart_of_accounts_id FROM mtl_fiscal_cat_accounts_v WHERE cost_type_id = :p_cost_type_id;
Because the view joins several base objects, queries should filter on indexed identifiers such as LEGAL_ENTITY_ID, COST_TYPE_ID, or COST_GROUP_ID rather than descriptive text to avoid unnecessary full scans.
-
View: MTL_FISCAL_CAT_ACCOUNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_FISCAL_CAT_ACCOUNTS_V, object_name:MTL_FISCAL_CAT_ACCOUNTS_V, status:VALID, product: INV - Inventory , description: PAC Category Accounts , implementation_dba_data: APPS.MTL_FISCAL_CAT_ACCOUNTS_V ,
-
View: MTL_FISCAL_CAT_ACCOUNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_FISCAL_CAT_ACCOUNTS_V, object_name:MTL_FISCAL_CAT_ACCOUNTS_V, status:VALID, product: INV - Inventory , description: PAC Category Accounts , implementation_dba_data: APPS.MTL_FISCAL_CAT_ACCOUNTS_V ,
-
View: CST_MGD_LIFO_PERIODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_MGD_LIFO_PERIODS_V, object_name:CST_MGD_LIFO_PERIODS_V, status:VALID, product: BOM - Bills of Material , description: View to retrieve period information from pac period table restricted by mfg_lookups.lookup_type = CST_PAC_PERIOD_STATUS mfg_lookups.lookup_code = DECODE(pp.open_flag,'Y',2,'N',4,3) , implementation_dba_data: APPS.CST_MGD_LIFO_PERIODS_V ,
-
View: CST_MGD_LIFO_PERIODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_MGD_LIFO_PERIODS_V, object_name:CST_MGD_LIFO_PERIODS_V, status:VALID, product: BOM - Bills of Material , description: View to retrieve period information from pac period table restricted by mfg_lookups.lookup_type = CST_PAC_PERIOD_STATUS mfg_lookups.lookup_code = DECODE(pp.open_flag,'Y',2,'N',4,3) , implementation_dba_data: APPS.CST_MGD_LIFO_PERIODS_V ,
-
VIEW: APPS.CST_MGD_LIFO_PERIODS_V
12.1.1
-
VIEW: APPS.MTL_FISCAL_CAT_ACCOUNTS_V
12.1.1
-
VIEW: APPS.MTL_FISCAL_CAT_ACCOUNTS_V
12.2.2
-
VIEW: APPS.CST_MGD_LIFO_PERIODS_V
12.2.2
-
VIEW: APPS.CST_MGD_LIFO_PERIODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_MGD_LIFO_PERIODS_V, object_name:CST_MGD_LIFO_PERIODS_V, status:VALID,
-
VIEW: APPS.ICX_EDM_COST_GROUP_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_COST_GROUP_INV_V, object_name:ICX_EDM_COST_GROUP_INV_V, status:VALID,
-
VIEW: APPS.MTL_FISCAL_CAT_ACCOUNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_FISCAL_CAT_ACCOUNTS_V, object_name:MTL_FISCAL_CAT_ACCOUNTS_V, status:VALID,
-
VIEW: APPS.ICX_EDM_COST_GROUP_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_COST_GROUP_INV_V, object_name:ICX_EDM_COST_GROUP_INV_V, status:VALID,
-
VIEW: APPS.MTL_FISCAL_CAT_ACCOUNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_FISCAL_CAT_ACCOUNTS_V, object_name:MTL_FISCAL_CAT_ACCOUNTS_V, status:VALID,
-
VIEW: APPS.CST_MGD_LIFO_PERIODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_MGD_LIFO_PERIODS_V, object_name:CST_MGD_LIFO_PERIODS_V, status:VALID,
-
VIEW: APPS.PJM_PROJECT_ONHAND_VALUE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_ONHAND_VALUE_V, object_name:PJM_PROJECT_ONHAND_VALUE_V, status:VALID,
-
VIEW: APPS.PJM_PROJECT_ONHAND_VALUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_ONHAND_VALUE_V, object_name:PJM_PROJECT_ONHAND_VALUE_V, status:VALID,
-
View: ICX_EDM_COST_GROUP_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_COST_GROUP_INV_V, object_name:ICX_EDM_COST_GROUP_INV_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Inventory Onhand Value View , implementation_dba_data: APPS.ICX_EDM_COST_GROUP_INV_V ,
-
View: ICX_EDM_COST_GROUP_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_COST_GROUP_INV_V, object_name:ICX_EDM_COST_GROUP_INV_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Inventory Onhand Value View , implementation_dba_data: APPS.ICX_EDM_COST_GROUP_INV_V ,
-
View: PJM_PROJECT_ONHAND_VALUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_ONHAND_VALUE_V, object_name:PJM_PROJECT_ONHAND_VALUE_V, status:VALID, product: PJM - Project Manufacturing , description: Project inventory onhand valuation for the Web Inquiry. , implementation_dba_data: APPS.PJM_PROJECT_ONHAND_VALUE_V ,
-
View: PJM_PROJECT_ONHAND_VALUE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_ONHAND_VALUE_V, object_name:PJM_PROJECT_ONHAND_VALUE_V, status:VALID, product: PJM - Project Manufacturing , description: Project inventory onhand valuation for the Web Inquiry. , implementation_dba_data: APPS.PJM_PROJECT_ONHAND_VALUE_V ,
-
eTRM - PJM Tables and Views
12.2.2
description: Change History of Serial Number - Model/Unit Number Associations ,
-
eTRM - PJM Tables and Views
12.1.1
description: Change History of Serial Number - Model/Unit Number Associations ,
-
eTRM - ICX Tables and Views
12.2.2
-
eTRM - ICX Tables and Views
12.1.1
-
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 - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2