Search Results financial_statement_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
-
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 ,
-
TABLE: AMW.AMW_FIN_ITEM_ACC_RISK
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_ITEM_ACC_RISK, object_name:AMW_FIN_ITEM_ACC_RISK, status:VALID,
-
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
-
TABLE: AMW.AMW_FIN_STMNT_SELECTION
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_SELECTION, object_name:AMW_FIN_STMNT_SELECTION, status:VALID,
-
TABLE: AMW.AMW_FIN_CERT_SCOPE
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_CERT_SCOPE, object_name:AMW_FIN_CERT_SCOPE, status:VALID,
-
TABLE: AMW.AMW_FIN_ITEM_ACC_CTRL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_ITEM_ACC_CTRL, object_name:AMW_FIN_ITEM_ACC_CTRL, 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 ,
-
TABLE: AMW.AMW_FIN_STMNT_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_TL, object_name:AMW_FIN_STMNT_TL, status:VALID,
-
VIEW: APPS.GCS_FIN_STMT_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FIN_STMT_DTLS_V, object_name:GCS_FIN_STMT_DTLS_V, status:VALID,
-
VIEW: APPS.AMW_FINANCIAL_ITEMS_V
12.1.1
-
VIEW: APPS.GCS_FIN_STMTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FIN_STMTS_V, object_name:GCS_FIN_STMTS_V, status:VALID,
-
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.GCS_FINANCIAL_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FINANCIAL_ITEMS_V, object_name:GCS_FINANCIAL_ITEMS_V, status:VALID,
-
APPS.AMW_FINSTMT_CERT_MIG_PKG SQL Statements
12.1.1
-
TABLE: AMW.AMW_FIN_STMNT_ITEMS_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_ITEMS_TL, object_name:AMW_FIN_STMNT_ITEMS_TL, status:VALID,
-
VIEW: APPS.GCS_ITEMS_TO_NAT_ACCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_ITEMS_TO_NAT_ACCTS_V, object_name:GCS_ITEMS_TO_NAT_ACCTS_V, status:VALID,
-
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,
-
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,
-
TABLE: AMW.AMW_FIN_ITEMS_KEY_ACC
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_ITEMS_KEY_ACC, object_name:AMW_FIN_ITEMS_KEY_ACC, status:VALID,
-
VIEW: APPS.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,
-
Table: AMW_FIN_STMNT_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_TL, object_name:AMW_FIN_STMNT_TL, status:VALID, product: AMW - Internal Controls Manager , description: Holds translated value for the names Financial Statements , implementation_dba_data: AMW.AMW_FIN_STMNT_TL ,
-
TABLE: AMW.AMW_FIN_STMNT_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_B, object_name:AMW_FIN_STMNT_B, status:VALID,
-
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: GCS_FIN_STMTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FIN_STMTS_V, object_name:GCS_FIN_STMTS_V, status:VALID, product: GCS - Financial Consolidation Hub , description: Financial statement information , implementation_dba_data: APPS.GCS_FIN_STMTS_V ,
-
Table: AMW_FIN_STMNT_TL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Holds translated value for the names Financial Statements , implementation_dba_data: Not implemented in this database ,
-
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,
-
Table: AMW_FIN_ITEMS_KEY_ACC
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_ITEMS_KEY_ACC, object_name:AMW_FIN_ITEMS_KEY_ACC, status:VALID, product: AMW - Internal Controls Manager , description: Hold information on the Key Accounts, which are Mapped to a Financial Item for Reporting in Oracle ICM , implementation_dba_data: AMW.AMW_FIN_ITEMS_KEY_ACC ,
-
Table: AMW_FIN_STMNT_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_B, object_name:AMW_FIN_STMNT_B, status:VALID, product: AMW - Internal Controls Manager , description: Stores a List of Financial Statements that has been imported to Oracle ICM , implementation_dba_data: AMW.AMW_FIN_STMNT_B ,
-
View: GCS_FIN_STMT_DTLS_V
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: Financial statement translatable information , implementation_dba_data: Not implemented in this database ,
-
Table: AMW_FIN_STMNT_ITEMS_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_STMNT_ITEMS_TL, object_name:AMW_FIN_STMNT_ITEMS_TL, status:VALID, product: AMW - Internal Controls Manager , description: Holds translated value for the names of Financial Items , implementation_dba_data: AMW.AMW_FIN_STMNT_ITEMS_TL ,
-
PACKAGE BODY: APPS.AMW_IMPORT_STMNTS_ACCS_PKG
12.1.1
-
View: GCS_FIN_STMTS_V
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: Financial statement information , implementation_dba_data: Not implemented in this database ,
-
Table: AMW_FIN_STMNT_ITEMS_TL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Holds translated value for the names of Financial Items , implementation_dba_data: Not implemented in this database ,
-
TABLE: AMW.AMW_FIN_CERT_EVAL_SUM
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_CERT_EVAL_SUM, object_name:AMW_FIN_CERT_EVAL_SUM, 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: GCS_ITEMS_TO_NAT_ACCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_ITEMS_TO_NAT_ACCTS_V, object_name:GCS_ITEMS_TO_NAT_ACCTS_V, status:VALID, product: GCS - Financial Consolidation Hub , description: Financial item to natural account relationship information. , implementation_dba_data: APPS.GCS_ITEMS_TO_NAT_ACCTS_V ,
-
View: GCS_FIN_STMT_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FIN_STMT_DTLS_V, object_name:GCS_FIN_STMT_DTLS_V, status:VALID, product: GCS - Financial Consolidation Hub , description: Financial statement translatable information , implementation_dba_data: APPS.GCS_FIN_STMT_DTLS_V ,
-
Table: AMW_FIN_ITEMS_KEY_ACC
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Hold information on the Key Accounts, which are Mapped to a Financial Item for Reporting in Oracle ICM , implementation_dba_data: Not implemented in this database ,
-
View: GCS_FINANCIAL_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FINANCIAL_ITEMS_V, object_name:GCS_FINANCIAL_ITEMS_V, status:VALID, product: GCS - Financial Consolidation Hub , description: Financial item information. , implementation_dba_data: APPS.GCS_FINANCIAL_ITEMS_V ,
-
Table: AMW_FIN_STMNT_B
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Stores a List of Financial Statements that has been imported to Oracle ICM , implementation_dba_data: Not implemented in this database ,
-
View: GCS_FINANCIAL_ITEMS_V
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: Financial item 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_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_FIN_STMNT_VL, object_name:AMW_FIN_STMNT_VL, status:VALID,
-
View: AMW_STATEMENTS_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 Set Definitions , implementation_dba_data: Not implemented in this database ,
-
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,
-
TABLE: AMW.AMW_KEY_ACC_INTERFACE
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_KEY_ACC_INTERFACE, object_name:AMW_KEY_ACC_INTERFACE, status:VALID,
-
View: AMW_CERTIFICATION_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CERTIFICATION_VL, object_name:AMW_CERTIFICATION_VL, status:VALID, product: AMW - Internal Controls Manager , description: This view returns information about Certification , implementation_dba_data: APPS.AMW_CERTIFICATION_VL ,