Search Results hz_financial_reports
Overview
HZ_FINANCIAL_REPORTS is a Receivables (AR) module table that stores financial reports associated with parties — customers, prospects, suppliers, or other trading partners registered in the TCA (Trading Community Architecture) registry. Within Oracle E-Business Suite 12.1.1 and 12.2.2, this table is part of the party data model that supports credit analysis, risk assessment, and financial due diligence. Each row represents a single financial report, such as a balance sheet, income statement, or cash flow statement, issued by or on behalf of a party.
From a Data Vault modeling perspective, the heuristic classification of HZ_FINANCIAL_REPORTS is hub-leaning. The table is anchored by a single-column surrogate primary key and carries a foreign key to HZ_PARTIES, with dependent detail tables (financial numbers, extensibility attributes) hanging off it. This suggests treating HZ_FINANCIAL_REPORTS as a hub-like entity whose natural business key is captured by the unique constraints documented in the physical schema.
Key Information Stored
The table contains 38 documented columns. The most significant include:
- FINANCIAL_REPORT_ID — the surrogate primary key (HZ_FINANCIAL_REPORTS_PK), the unique identifier for each financial report record.
- PARTY_ID — foreign key to HZ_PARTIES, identifying the party to which the report belongs.
- TYPE_OF_FINANCIAL_REPORT — the classification of the report (for example, balance sheet, income statement, or cash flow statement).
- DOCUMENT_REFERENCE — an external reference or document identifier for the report.
- DATE_REPORT_ISSUED and ISSUED_PERIOD — issuance date and the accounting period covered by the report.
- REPORT_START_DATE and REPORT_END_DATE — the beginning and end of the reporting period.
- REQUIRING_AUTHORITY — the authority or regulator that required the report, where applicable.
- AUDIT_IND, CONSOLIDATED_IND, ESTIMATED_IND, FINAL_IND, FORECAST_IND — indicator columns describing the nature and status of the report.
- QUALIFIED_IND, RESTATED_IND, SIGNED_BY_PRINCIPALS_IND, TRIAL_BALANCE_IND, UNBALANCED_IND — additional audit and assurance indicators.
- CONTENT_SOURCE_TYPE and ACTUAL_CONTENT_SOURCE — describe how the report content was captured.
- STATUS and OBJECT_VERSION_NUMBER — record state and optimistic locking columns.
Two unique indexes define business-key candidates. HZ_FINANCIAL_REPORTS_U1 is a single-column unique index on FINANCIAL_REPORT_ID, which is the surrogate key. HZ_FINANCIAL_REPORTS_U2 is a composite unique index spanning PARTY_ID, TYPE_OF_FINANCIAL_REPORT, DOCUMENT_REFERENCE, DATE_REPORT_ISSUED, ISSUED_PERIOD, REPORT_START_DATE, REPORT_END_DATE, and ACTUAL_CONTENT_SOURCE. This composite constraint represents the true natural or business key of the entity and should be used when deduplicating or integrating source data.
Common Use Cases and Queries
HZ_FINANCIAL_REPORTS is typically queried during credit evaluation and customer risk profiling. A common pattern joins the report header to the party and to its subordinate number lines:
- Party financial profile:
SELECT r.financial_report_id, r.type_of_financial_report, r.date_report_issued, r.report_start_date, r.report_end_date FROM hz_financial_reports r WHERE r.party_id = :party_id ORDER BY r.date_report_issued DESC; - Report with financial line items: join HZ_FINANCIAL_NUMBERS on FINANCIAL_REPORT_ID to retrieve the actual figures (revenue, liabilities, equity) belonging to each report.
- Audited or restated report discovery: filter on AUDIT_IND = 'Y' or RESTATED_IND = 'Y' to identify high-integrity statements for underwriting decisions.
- Regulatory extracts: group by REQUIRING_AUTHORITY and ISSUED_PERIOD to satisfy reporting obligations.
Because extensibility attributes are stored in the HZ_FIN_REPORTS_EXT_B and HZ_FIN_REPORTS_EXT_TL tables, reporting queries that need descriptive flexfield values must join those tables on FINANCIAL_REPORT_ID.
Related Objects
- HZ_PARTIES — referenced by HZ_FINANCIAL_REPORTS.PARTY_ID; the parent party record.
- HZ_FINANCIAL_NUMBERS — child table linked via FINANCIAL_REPORT_ID; stores the numeric values reported.
- HZ_FIN_REPORTS_EXT_B — child table linked via FINANCIAL_REPORT_ID; stores extensibility (descriptive flexfield) attributes.
- HZ_FIN_REPORTS_EXT_TL — child table linked via FINANCIAL_REPORT_ID; stores translated extensibility attribute text.
- HZ_IMP_FINNUMBERS_SG — interface/staging table linked via FINANCIAL_REPORT_ID for bulk import of financial numbers.
- HZ_IMP_FINREPORTS_SG — interface/staging table linked via FINANCIAL_REPORT_ID for bulk import of financial reports.
These relationships confirm HZ_FINANCIAL_REPORTS as a central header entity in the party financial data model, with dependent detail, extensibility, and import tables referencing its primary key.
-
Table: HZ_FINANCIAL_REPORTS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_FINANCIAL_REPORTS, object_name:HZ_FINANCIAL_REPORTS, status:VALID, product: AR - Receivables , description: Financial reports of parties , implementation_dba_data: AR.HZ_FINANCIAL_REPORTS ,
-
Table: HZ_FINANCIAL_REPORTS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_FINANCIAL_REPORTS, object_name:HZ_FINANCIAL_REPORTS, status:VALID, product: AR - Receivables , description: Financial reports of parties , implementation_dba_data: AR.HZ_FINANCIAL_REPORTS ,
-
VIEW: AR.HZ_FINANCIAL_REPORTS#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_FINANCIAL_REPORTS#, status:VALID,
-
VIEW: APPS.AMS_ORG_FINANCIAL_NUMS_V
12.1.1
-
VIEW: APPS.AMS_ORG_FINANCIAL_NUMS_V
12.2.2
-
SYNONYM: APPS.HZ_FINANCIAL_REPORTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_FINANCIAL_REPORTS, status:VALID,
-
VIEW: APPS.AMS_ORG_FINANCIAL_RPT_V
12.1.1
-
VIEW: APPS.AMS_ORG_FINANCIAL_RPT_V
12.2.2
-
SYNONYM: APPS.HZ_FINANCIAL_REPORTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_FINANCIAL_REPORTS, status:VALID,
-
VIEW: AR.HZ_FINANCIAL_REPORTS#
12.2.2
-
Table: HZ_IMP_FINREPORTS_INT
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_IMP_FINREPORTS_INT, object_name:HZ_IMP_FINREPORTS_INT, status:VALID, product: AR - Receivables , description: TCA import table for HZ_FINANCIAL_REPORTS , implementation_dba_data: AR.HZ_IMP_FINREPORTS_INT ,
-
Table: HZ_IMP_FINREPORTS_INT
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_IMP_FINREPORTS_INT, object_name:HZ_IMP_FINREPORTS_INT, status:VALID, product: AR - Receivables , description: TCA import table for HZ_FINANCIAL_REPORTS , implementation_dba_data: AR.HZ_IMP_FINREPORTS_INT ,
-
APPS.HZ_DNBUI_PVT SQL Statements
12.1.1
-
APPS.HZ_DNBUI_PVT SQL Statements
12.2.2
-
Table: HZ_FINANCIAL_NUMBERS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_FINANCIAL_NUMBERS, object_name:HZ_FINANCIAL_NUMBERS, status:VALID, product: AR - Receivables , description: Details of financial reports , implementation_dba_data: AR.HZ_FINANCIAL_NUMBERS ,
-
Table: HZ_FIN_REPORTS_EXT_B
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_FIN_REPORTS_EXT_B, object_name:HZ_FIN_REPORTS_EXT_B, status:VALID, product: AR - Receivables , description: Stores extensible attributes for financial reports. , implementation_dba_data: AR.HZ_FIN_REPORTS_EXT_B ,
-
Table: HZ_FIN_REPORTS_EXT_B
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_FIN_REPORTS_EXT_B, object_name:HZ_FIN_REPORTS_EXT_B, status:VALID, product: AR - Receivables , description: Stores extensible attributes for financial reports. , implementation_dba_data: AR.HZ_FIN_REPORTS_EXT_B ,
-
Table: HZ_FIN_REPORTS_EXT_TL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_FIN_REPORTS_EXT_TL, object_name:HZ_FIN_REPORTS_EXT_TL, status:VALID, product: AR - Receivables , description: Provides multilingual support for extensible financial report attributes. , implementation_dba_data: AR.HZ_FIN_REPORTS_EXT_TL ,
-
Table: HZ_FINANCIAL_NUMBERS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_FINANCIAL_NUMBERS, object_name:HZ_FINANCIAL_NUMBERS, status:VALID, product: AR - Receivables , description: Details of financial reports , implementation_dba_data: AR.HZ_FINANCIAL_NUMBERS ,
-
Lookup Type: HZ_EXT_ENTITIES
12.1.1
product: AR - Receivables , meaning: Entities for extensible attributes , description: Data model extensibility entities ,
-
Table: HZ_FIN_REPORTS_EXT_TL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_FIN_REPORTS_EXT_TL, object_name:HZ_FIN_REPORTS_EXT_TL, status:VALID, product: AR - Receivables , description: Provides multilingual support for extensible financial report attributes. , implementation_dba_data: AR.HZ_FIN_REPORTS_EXT_TL ,
-
APPS.HZ_FINANCIAL_REPORTS_PKG SQL Statements
12.1.1
-
APPS.HZ_FINANCIAL_REPORTS_PKG SQL Statements
12.2.2
-
Lookup Type: HZ_EXT_ENTITIES
12.2.2
product: AR - Receivables , meaning: Entities for extensible attributes , description: Data model extensibility entities ,
-
PACKAGE: APPS.HZ_IMP_LOAD_FINNUMBERS_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HZ_IMP_LOAD_FINNUMBERS_PKG, status:VALID,
-
PACKAGE: APPS.HZ_IMP_LOAD_FINNUMBERS_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HZ_IMP_LOAD_FINNUMBERS_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_DNBUI_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_DNBUI_PVT, status:VALID,
-
PACKAGE BODY: APPS.HZ_DNBUI_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_DNBUI_PVT, status:VALID,
-
PACKAGE BODY: APPS.HZ_ORGANIZATION_INFO_V2PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_ORGANIZATION_INFO_V2PVT, status:VALID,
-
PACKAGE BODY: APPS.HZ_ORGANIZATION_INFO_V2PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_ORGANIZATION_INFO_V2PVT, status:VALID,
-
PACKAGE BODY: APPS.HZ_FINANCIAL_REPORTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_FINANCIAL_REPORTS_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_FINANCIAL_REPORTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_FINANCIAL_REPORTS_PKG, status:VALID,
-
PACKAGE BODY: APPS.JTF_TTY_CAL_METRICS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TTY_CAL_METRICS_PVT, status:VALID,
-
PACKAGE BODY: APPS.HZ_IMP_LOAD_FINREPORTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_IMP_LOAD_FINREPORTS_PKG, status:VALID,
-
Lookup Type: ENTITY_NAME
12.2.2
product: AR - Receivables , meaning: ENTITY_NAME , description: Entities that are supported by lead import to capture flex field info ,
-
PACKAGE BODY: APPS.JTF_TTY_CAL_METRICS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TTY_CAL_METRICS_PVT, status:VALID,
-
PACKAGE BODY: APPS.HZ_IMP_LOAD_FINREPORTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_IMP_LOAD_FINREPORTS_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_MERGE_DUP_CHECK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MERGE_DUP_CHECK, status:VALID,
-
PACKAGE BODY: APPS.HZ_MERGE_DUP_CHECK
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_MERGE_DUP_CHECK, status:VALID,
-
Lookup Type: ENTITY_NAME
12.1.1
product: AR - Receivables , meaning: ENTITY_NAME , description: Entities that are supported by lead import to capture flex field info ,
-
View: AMS_ORG_FINANCIAL_NUMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORG_FINANCIAL_NUMS_V, object_name:AMS_ORG_FINANCIAL_NUMS_V, status:VALID, product: AMS - Marketing , description: Details of financial reports , implementation_dba_data: APPS.AMS_ORG_FINANCIAL_NUMS_V ,
-
View: AMS_ORG_FINANCIAL_NUMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORG_FINANCIAL_NUMS_V, object_name:AMS_ORG_FINANCIAL_NUMS_V, status:VALID, product: AMS - Marketing , description: Details of financial reports , implementation_dba_data: APPS.AMS_ORG_FINANCIAL_NUMS_V ,
-
VIEW: APPS.AMS_ORG_FINANCIAL_NUMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORG_FINANCIAL_NUMS_V, object_name:AMS_ORG_FINANCIAL_NUMS_V, status:VALID,
-
VIEW: APPS.AMS_ORG_FINANCIAL_NUMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORG_FINANCIAL_NUMS_V, object_name:AMS_ORG_FINANCIAL_NUMS_V, status:VALID,
-
PACKAGE BODY: APPS.HZ_ORG_INFO_VALIDATE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_ORG_INFO_VALIDATE, status:VALID,
-
PACKAGE BODY: APPS.HZ_ORG_INFO_VALIDATE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_ORG_INFO_VALIDATE, status:VALID,
-
PACKAGE BODY: APPS.HZ_ORGANIZATION_INFO_V2PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_ORGANIZATION_INFO_V2PUB, status:VALID,
-
PACKAGE BODY: APPS.HZ_IMP_LOAD_SSM_MATCHING_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_IMP_LOAD_SSM_MATCHING_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_IMP_LOAD_BATCH_COUNTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_IMP_LOAD_BATCH_COUNTS_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_IMP_LOAD_BATCH_COUNTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_IMP_LOAD_BATCH_COUNTS_PKG, status:VALID,