Search Results cst_acct_info_v
Overview
CST_ACCT_INFO_V is a public synonym view owned by the APPS schema in Oracle E-Business Suite. It exposes the accounting information associated with an inventory organization, resolving the flexfield-style organization information records maintained against the HR organization model into discrete, numeric identifiers. The view is catalogued under the BOM — Bills of Material product family, where it supports costing and manufacturing flows that require the ledger, legal entity, and operating unit context of an inventory organization. Because accounting context is a prerequisite for inventory valuation, cost grouping, and manufacturing accounting, CST_ACCT_INFO_V functions as a lightweight, read-only projection that downstream reports, concurrent programs, and integration interfaces can join against using only an ORGANIZATION_ID.
The view is documented with STATUS VALID in the APPS schema and does not materialize any data of its own; it derives all values at query time.
Underlying Base Objects
The view is defined over a single referenced base object: HR_ORGANIZATION_INFORMATION, accessed through a synonym. That table stores descriptive and classifying attributes of organizations as key-value pairs, each row identified by an ORG_INFORMATION_CONTEXT and a numbered ORG_INFORMATIONn column.
CST_ACCT_INFO_V filters HR_ORGANIZATION_INFORMATION to the context 'ACCOUNTING INFORMATION' and converts the string-valued flexfield segments into numbers. The mapping is positional: ORG_INFORMATION1 becomes LEDGER_ID, ORG_INFORMATION2 becomes LEGAL_ENTITY, and ORG_INFORMATION3 becomes OPERATING_UNIT. ORGANIZATION_ID is carried through unchanged as the join key to HR_ALL_ORGANIZATION_UNITS and the inventory organization tables used by costing and BOM.
Key Columns
- ORGANIZATION_ID — The inventory organization identifier. This is the primary correlation key and maps to organization_id in HR_ALL_ORGANIZATION_UNITS and the inventory organization master.
- LEDGER_ID — Derived from TO_NUMBER(ORG_INFORMATION1). Identifies the general ledger ledger (set of books in 12.1.1 nomenclature) in which the organization's inventory and manufacturing transactions are accounted.
- LEGAL_ENTITY — Derived from TO_NUMBER(ORG_INFORMATION2). Identifies the legal entity associated with the organization, used in intercompany and legal reporting.
- OPERATING_UNIT — Derived from TO_NUMBER(ORG_INFORMATION3). Identifies the operating unit that owns or transacts against the organization, relevant for Multi-Org secured reporting.
All three accounting columns are cast with TO_NUMBER, so the view returns numeric IDs rather than the descriptive flexfield text stored in the base table.
Common Use Cases and Queries
Typical applications include inventory valuation reports that must segregate balances by ledger, cost rollup and manufacturing accounting programs that require legal entity and operating unit context, and integration extracts that publish organization accounting attributes to external systems. The view is also used to resolve the accounting setup of an organization when diagnosing costing or period-close issues.
Retrieve accounting context for a single organization:
SELECT organization_id, ledger_id, legal_entity, operating_unit FROM cst_acct_info_v WHERE organization_id = :org_id;
List all inventory organizations with their ledger assignment:
SELECT organization_id, ledger_id, legal_entity, operating_unit FROM cst_acct_info_v ORDER BY organization_id;
Join to the inventory organization master to obtain names:
SELECT v.organization_id, o.name, v.ledger_id, v.legal_entity, v.operating_unit FROM cst_acct_info_v v, hr_all_organization_units o WHERE v.organization_id = o.organization_id;
Because the view reads directly from HR_ORGANIZATION_INFORMATION, it reflects the current organization configuration and requires no refresh. Users should ensure appropriate organization-level security is applied when querying across multiple operating units in a Multi-Org environment.
-
View: CST_ACCT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ACCT_INFO_V, object_name:CST_ACCT_INFO_V, status:VALID, product: BOM - Bills of Material , description: Accounting Information for an Inventory Organization , implementation_dba_data: APPS.CST_ACCT_INFO_V ,
-
View: CST_ACCT_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ACCT_INFO_V, object_name:CST_ACCT_INFO_V, status:VALID, product: BOM - Bills of Material , description: Accounting Information for an Inventory Organization , implementation_dba_data: APPS.CST_ACCT_INFO_V ,
-
APPS.CSTPPDOP SQL Statements
12.2.2
-
APPS.CSTPPDOP SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CSTPPDOP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSTPPDOP, status:VALID,
-
PACKAGE BODY: APPS.CSTPPDOP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSTPPDOP, status:VALID,
-
APPS.RCV_ACCEVENTS_PVT SQL Statements
12.1.1
-
APPS.RCV_ACCEVENTS_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CST_UTILITY_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_UTILITY_PUB, status:VALID,
-
PACKAGE BODY: APPS.CSE_GL_INTERFACE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSE_GL_INTERFACE_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSTPMRGL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSTPMRGL, status:VALID,
-
PACKAGE BODY: APPS.AHL_OSP_COST_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_OSP_COST_PVT, status:VALID,
-
PACKAGE BODY: APPS.CST_UTILITY_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_UTILITY_PUB, status:VALID,
-
PACKAGE BODY: APPS.RCV_CREATEACCOUNTING_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RCV_CREATEACCOUNTING_PVT, status:VALID,
-
PACKAGE BODY: APPS.RCV_ACCEVENTS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RCV_ACCEVENTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.RCV_CREATEACCOUNTING_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RCV_CREATEACCOUNTING_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSE_GL_INTERFACE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSE_GL_INTERFACE_PKG, status:VALID,
-
PACKAGE BODY: APPS.CST_PENDINGTXNSREPORT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_PENDINGTXNSREPORT_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_OSP_COST_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_OSP_COST_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSTPMRGL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSTPMRGL, status:VALID,
-
PACKAGE BODY: APPS.CSTPAPPR
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSTPAPPR, status:VALID,
-
PACKAGE BODY: APPS.RCV_ACCEVENTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RCV_ACCEVENTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSTPLVCP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSTPLVCP, status:VALID,
-
PACKAGE BODY: APPS.CSTPLENG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSTPLENG, status:VALID,
-
PACKAGE BODY: APPS.CSTPLVCP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSTPLVCP, status:VALID,
-
PACKAGE BODY: APPS.CST_LCMADJUSTMENTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_LCMADJUSTMENTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_VWP_RULES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_VWP_RULES_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSTPLENG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSTPLENG, status:VALID,
-
PACKAGE BODY: APPS.CST_XLA_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_XLA_PVT, status:VALID,
-
PACKAGE BODY: APPS.CST_ACCOUNTINGPERIOD_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_ACCOUNTINGPERIOD_PUB, status:VALID,
-
PACKAGE BODY: APPS.CST_ACCRUAL_LOAD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_ACCRUAL_LOAD, status:VALID,
-
PACKAGE BODY: APPS.CST_XLA_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_XLA_PVT, status:VALID,
-
PACKAGE BODY: APPS.CST_LCMADJUSTMENTS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_LCMADJUSTMENTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.RCV_SEEDEVENTS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RCV_SEEDEVENTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSTPAVCP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSTPAVCP, status:VALID,
-
PACKAGE BODY: APPS.CSTPAVCP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSTPAVCP, status:VALID,
-
PACKAGE BODY: APPS.CST_ACCOUNTINGPERIOD_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_ACCOUNTINGPERIOD_PUB, status:VALID,
-
PACKAGE BODY: APPS.CST_ACCRUAL_LOAD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_ACCRUAL_LOAD, status:VALID,
-
PACKAGE BODY: APPS.CSE_ASSET_UTIL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSE_ASSET_UTIL_PKG, status:VALID,
-
PACKAGE BODY: APPS.RCV_SEEDEVENTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RCV_SEEDEVENTS_PVT, status:VALID,
-
APPS.AHL_OSP_COST_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CSE_ASSET_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSE_ASSET_UTIL_PKG, status:VALID,
-
VIEW: APPS.CST_ACCT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ACCT_INFO_V, object_name:CST_ACCT_INFO_V, status:VALID,
-
PACKAGE BODY: APPS.CST_REVENUECOGSMATCH_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_REVENUECOGSMATCH_PVT, status:VALID,
-
PACKAGE BODY: APPS.CST_REVENUECOGSMATCH_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_REVENUECOGSMATCH_PVT, status:VALID,
-
APPS.AHL_OSP_COST_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AHL_VWP_RULES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_VWP_RULES_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSTPPDOP
12.1.1
-
PACKAGE BODY: APPS.CSTPPDOP
12.2.2
-
12.1.1 DBA Data
12.1.1