Search Results parent_financial_item_id
Overview
APPS.RCI_FINANCIAL_LINE_V is a reporting view in Oracle E-Business Suite that exposes the financial statement line (financial item) definitions used by the Enterprise Tax, Regulatory and Compliance Management (ETRM) module and its financial reporting infrastructure. The view serves as a denormalized, consumer-friendly projection of the metadata that ties together a financial statement identifier, its constituent financial statement items, and the report axis definitions that drive their display.
Its principal role is to provide a lookup-style list of valid financial line values for a given financial statement, presenting each line as an id/value pair together with the owning FINANCIAL_STATEMENT_ID. This makes it suitable for value-set style list-of-values population, report parameter selection, and integration payloads where a downstream process must reference the current, active set of financial line items belonging to a specific statement.
Underlying Base Objects
As documented in the ETRM metadata, the view is defined over two logical sources joined in a single SELECT:
- AMW_FIN_STMNT_ITEMS_B (aliased
AFSI) — the financial statement items base table, which stores the association between aFINANCIAL_ITEM_ID, aFINANCIAL_STATEMENT_ID, and aSTATEMENT_GROUP_ID. This is the driving table of the join and the source of theFINANCIAL_STATEMENT_IDoutput column. - RG_REPORT_AXES_V and RG_REPORT_AXIS_SETS_V — an inline derived table (aliased
AFIV) that supplies the itemNAME,DESCRIPTION,DISPLAY_FLAG, andSEQUENCE. The derived table joins report axes to report axis sets onAXIS_SET_IDand filters forAXIS_SET_TYPE='R'(report axis type) andDISPLAY_FLAG='Y'(visible items only).
The join condition is AFSI.FINANCIAL_ITEM_ID = AFIV.FINANCIAL_ITEM_ID. A correlated subquery restricts the result to the highest STATEMENT_GROUP_ID available for each FINANCIAL_STATEMENT_ID, meaning the view always returns the most recent statement group version of the statement rather than historical group revisions. No additional base objects are documented in the ETRM metadata.
Key Columns
- ID (
AFIV.FINANCIAL_ITEM_ID) — the surrogate identifier of the financial line item. In the derived table this is sourced from the report axisSEQUENCEcolumn, which acts as the item identifier for the report axis. - VALUE (
AFIV.NAME) — the display name of the financial line item, sourced from RG_REPORT_AXES_V. This is the human-readable label typically presented to users. - FINANCIAL_STATEMENT_ID (
AFSI.FINANCIAL_STATEMENT_ID) — the identifier of the parent financial statement to which the line item belongs. This is the column most relevant to the searched term and functions as the primary filtering key for the view.
The derived table additionally exposes DESCRIPTION, DISPLAY_FLAG, and a null-valued PARENT_FINANCIAL_ITEM_ID, though only FINANCIAL_ITEM_ID and NAME are projected into the outer view's public column list.
Common Use Cases and Queries
The view is most often queried to retrieve the valid line items for a known financial statement, for example when building a selection list or validating an inbound reference.
SELECT id, value, financial_statement_id
FROM apps.rci_financial_line_v
WHERE financial_statement_id = :p_statement_id
ORDER BY id;
Because the view already filters to DISPLAY_FLAG='Y' and the maximum statement group, it can be used without additional filtering to enumerate active, displayable lines:
SELECT value
FROM apps.rci_financial_line_v
WHERE financial_statement_id = :p_statement_id;
Integration scenarios typically join the view back to statement header information or to AMW_FIN_STMNT_ITEMS_B to resolve a line identifier to its descriptive name during data extraction and reconciliation.
SELECT l.financial_statement_id, l.id, l.value
FROM apps.rci_financial_line_v l
WHERE EXISTS (SELECT 1
FROM amw_fin_stmnt_items_b b
WHERE b.financial_item_id = l.id);
Query performance is influenced by the correlated subquery against AMW_FIN_STMNT_ITEMS_B and by the underlying report axis views; filtering on FINANCIAL_STATEMENT_ID is recommended when the calling process already knows the target statement.
-
VIEW: APPS.RCI_FINANCIAL_LINE_V
12.1.1
-
TABLE: AMW.AMW_FIN_ITEM_FLAT
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_ITEM_FLAT, object_name:AMW_FIN_ITEM_FLAT, status:VALID,
-
View: AMW_FINANCIAL_ITEMS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: A View on top of Oracle Financial Statement Generator Views to get All Row (Financial Items) Definitions , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_FINANCIAL_ITEMS_V
12.1.1
-
View: AMW_FINANCIAL_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FINANCIAL_ITEMS_V, object_name:AMW_FINANCIAL_ITEMS_V, status:VALID, product: AMW - Internal Controls Manager , description: A View on top of Oracle Financial Statement Generator Views to get All Row (Financial Items) Definitions , implementation_dba_data: APPS.AMW_FINANCIAL_ITEMS_V ,
-
VIEW: APPS.AMW_FIN_STMNT_KEY_ACCT_V
12.1.1
-
VIEW: APPS.GCS_FINANCIAL_ITEMS_HIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FINANCIAL_ITEMS_HIER_V, object_name:GCS_FINANCIAL_ITEMS_HIER_V, status:VALID,
-
View: AMW_FIN_STMNT_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FIN_STMNT_ITEMS_VL, object_name:AMW_FIN_STMNT_ITEMS_VL, status:VALID, product: AMW - Internal Controls Manager , description: Holds All Financial Items in a Financial Statements , implementation_dba_data: APPS.AMW_FIN_STMNT_ITEMS_VL ,
-
View: AMW_FIN_STMNT_KEY_ACCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FIN_STMNT_KEY_ACCT_V, object_name:AMW_FIN_STMNT_KEY_ACCT_V, status:VALID, product: AMW - Internal Controls Manager , description: Stores a List of Natural/Key Accounts and how it form the hierarchy within a Financial Statement in Oracle ICM , implementation_dba_data: APPS.AMW_FIN_STMNT_KEY_ACCT_V ,
-
View: AMW_FIN_STMNT_KEY_ACCT_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Stores a List of Natural/Key Accounts and how it form the hierarchy within a Financial Statement in Oracle ICM , implementation_dba_data: Not implemented in this database ,
-
View: AMW_FIN_STMNT_ITEMS_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Holds All Financial Items in a Financial Statements , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_FIN_STMNT_ITEMS_VL
12.1.1
-
TABLE: AMW.AMW_FIN_STMNT_ITEMS_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_ITEMS_B, object_name:AMW_FIN_STMNT_ITEMS_B, status:VALID,
-
VIEW: APPS.AMW_FINANCIAL_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FINANCIAL_ITEMS_V, object_name:AMW_FINANCIAL_ITEMS_V, status:VALID,
-
View: GCS_FINANCIAL_ITEMS_HIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FINANCIAL_ITEMS_HIER_V, object_name:GCS_FINANCIAL_ITEMS_HIER_V, status:VALID, product: GCS - Financial Consolidation Hub , description: Financial item hierarchy information. , implementation_dba_data: APPS.GCS_FINANCIAL_ITEMS_HIER_V ,
-
View: GCS_FINANCIAL_ITEMS_HIER_V
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: Financial item hierarchy information. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_FIN_STMNT_KEY_ACCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FIN_STMNT_KEY_ACCT_V, object_name:AMW_FIN_STMNT_KEY_ACCT_V, status:VALID,
-
VIEW: APPS.AMW_FIN_STMNT_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FIN_STMNT_ITEMS_VL, object_name:AMW_FIN_STMNT_ITEMS_VL, status:VALID,
-
View: RCI_FINANCIAL_LINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.RCI_FINANCIAL_LINE_V, object_name:RCI_FINANCIAL_LINE_V, status:VALID, product: AMW - Internal Controls Manager , description: This View contains the definition for the Organization Financial Line Item dimension , implementation_dba_data: APPS.RCI_FINANCIAL_LINE_V ,
-
View: RCI_FINANCIAL_LINE_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This View contains the definition for the Organization Financial Line Item dimension , implementation_dba_data: Not implemented in this database ,
-
APPS.AMW_IMPORT_STMNTS_ACCS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_IMPORT_STMNTS_ACCS_PKG
12.1.1
-
APPS.AMW_IMPORT_STMNTS_ACCS_PKG dependencies on AMW_FIN_ITEM_FLAT
12.1.1
-
APPS.AMW_IMPORT_STMNTS_ACCS_PKG dependencies on AMW_FIN_STMNT_SELECTION
12.1.1
-
APPS.AMW_IMPORT_STMNTS_ACCS_PKG dependencies on AMW_FIN_STMNT_S
12.1.1
-
APPS.AMW_IMPORT_STMNTS_ACCS_PKG dependencies on AMW_FINANCIAL_ITEMS_V
12.1.1
-
APPS.AMW_IMPORT_STMNTS_ACCS_PKG dependencies on AMW_FIN_STMNT_ITEMS_B
12.1.1
-
APPS.AMW_IMPORT_STMNTS_ACCS_PKG dependencies on FND_FILE
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT SQL Statements
12.1.1
-
APPS.AMW_IMPORT_STMNTS_ACCS_PKG dependencies on AMW_IMPORT_STMNTS_ACCS_PKG
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_FIN_STMNT_ITEMS_B
12.1.1
-
APPS.AMW_IMPORT_STMNTS_ACCS_PKG dependencies on FND_PROFILE
12.1.1
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_PVT
12.1.1
-
eTRM - AMW Tables and Views
12.1.1
description: This fact table stores the summary data related to the Significant Account Evaluation report ,
-
eTRM - GCS Tables and Views
12.1.1
description: XML generated for XML Publisher reporting ,