Search Results ar_cmgt_financial_data
Overview
The AR_CMGT_FINANCIAL_DATA table is a Receivables module object within the Oracle E-Business Suite AR schema. It stores financial statement information pertaining to the company or customer organization that is under credit review. The table functions as the analytical backbone of the Credit Management workflow, capturing balance-sheet and income-statement line items so that credit analysts and collection personnel can evaluate the financial health of a party before extending or adjusting credit terms. Records are scoped to a specific credit request, a corresponding case folder, and the customer account, allowing the same financial statement data to be revisited across the lifecycle of a credit review.
From a modeling perspective, the heuristic Data Vault classification mined from the foreign key structure is standalone. The table does not act as a pure hub, link, or satellite in a formal Data Vault sense; instead it behaves as a descriptive, transaction-oriented detail table anchored to multiple parent entities. This classification should be treated as a modeling suggestion rather than a mandated design. In both 12.1.1 and 12.2.2, the object resides in the AR schema and is marked VALID.
Key Information Stored
The surrogate primary key, enforced by the AR_CMGT_FINANCIAL_DATA_PK constraint, is FINANCIAL_DATA_ID. A unique index, AR_CMGT_FINANCIAL_DATA_U1, is also defined on FINANCIAL_DATA_ID, confirming it as the documented unique business-key candidate for row-level identification. The table contains 43 columns that fall into three logical groups.
- Contextual keys: CREDIT_REQUEST_ID links the statement to a specific credit request, CASE_FOLDER_ID ties it to the surrounding case, and CUST_ACCOUNT_ID, PARTY_ID, and SITE_USE_ID identify the customer account, party, and site being reviewed.
- Reporting qualifiers: REPORTING_CURRENCY, MONETARY_UNIT, CURR_FIN_ST_DATE, and REPORTING_PERIOD define the currency of the figures, the monetary units (for example, thousands or millions), the statement date, and the accounting period.
- Balance-sheet and income-statement measures: Asset and liability columns include CASH, ACCOUNTS_PAYABLE, NET_RECEIVABLES, SHORT_TERM_DEBT, INVENTORIES, OTHER_CUR_ASSETS, OTHER_CUR_LIABILITIES, TOTAL_CUR_ASSETS, TOTAL_CUR_LIABILITIES, LONG_TERM_DEBT, NET_FIXED_ASSETS, OTHER_NON_CUR_ASSETS, OTHER_NON_CUR_LIABILITIES, TOTAL_ASSETS, TOTAL_LIABILITIES, STOCKHOLDER_EQUITY, and TOTAL_LIABILITIES_EQUITY. Income-statement and ratio columns include REVENUE, COST_OF_GOODS_SOLD, SGA_EXPENSES, NON_OPERATING_INCOME, NON_OPERATING_EXPENSES, OPERATING_INCOME, PRE_TAX_NET_INCOME, INCOME_TAXES, NET_INCOME, OPERATING_MARGIN, and EARNINGS_PER_SHARE.
- Audit columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN provide standard EBS who-columns.
Common Use Cases and Queries
Typical scenarios include reconstructing the financial profile used to justify a credit decision, comparing reported figures across reporting periods, and feeding credit-scoring or risk models. Analysts frequently join this table to its parent requests and folders to produce a complete credit-review dossier.
- Retrieve all statements for a credit request:
SELECT FINANCIAL_DATA_ID, CURR_FIN_ST_DATE, REPORTING_PERIOD, TOTAL_ASSETS, TOTAL_LIABILITIES, NET_INCOME, OPERATING_MARGIN FROM AR.AR_CMGT_FINANCIAL_DATA WHERE CREDIT_REQUEST_ID = :p_credit_request_id ORDER BY CURR_FIN_ST_DATE DESC; - Compare balance-sheet totals across a customer's accounts:
SELECT CUST_ACCOUNT_ID, CURR_FIN_ST_DATE, TOTAL_CUR_ASSETS, TOTAL_CUR_LIABILITIES, STOCKHOLDER_EQUITY FROM AR.AR_CMGT_FINANCIAL_DATA WHERE CUST_ACCOUNT_ID = :p_cust_account_id ORDER BY CURR_FIN_ST_DATE; - Derive liquidity and leverage indicators directly from stored measures, for example TOTAL_CUR_ASSETS divided by TOTAL_CUR_LIABILITIES, or TOTAL_LIABILITIES divided by TOTAL_ASSETS, to support exposure-limit reviews.
- Audit trail reporting using CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY to identify who entered or amended financial figures.
Related Objects
The table is connected to several core objects through documented foreign keys and shared identifiers.
- AR_CMGT_CREDIT_REQUESTS — joined via CREDIT_REQUEST_ID; the parent credit request that owns the statement.
- AR_CMGT_CASE_FOLDERS — joined via CASE_FOLDER_ID; the case folder grouping the credit review.
- HZ_CUST_ACCOUNTS — joined via CUST_ACCOUNT_ID; the customer account whose finances are reported.
- HZ_PARTIES — referenced through PARTY_ID, identifying the legal party under review.
- HZ_CUST_SITE_USES_ALL — referenced through SITE_USE_ID, identifying the specific customer site.
- AR_CMGT_FINANCIAL_DATA_PK / AR_CMGT_FINANCIAL_DATA_U1 — the primary key constraint and unique index that govern row identity.
- AR_CMGT_CREDIT_REQUESTS_PK — the parent key referenced by the CREDIT_REQUEST_ID foreign key.
-
Table: AR_CMGT_FINANCIAL_DATA
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CMGT_FINANCIAL_DATA, object_name:AR_CMGT_FINANCIAL_DATA, status:VALID, product: AR - Receivables , description: The AR_CMGT_FINANCIAL_DATA table stores financial statements information about the company under credit review. , implementation_dba_data: AR.AR_CMGT_FINANCIAL_DATA ,
-
Table: AR_CMGT_FINANCIAL_DATA
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CMGT_FINANCIAL_DATA, object_name:AR_CMGT_FINANCIAL_DATA, status:VALID, product: AR - Receivables , description: The AR_CMGT_FINANCIAL_DATA table stores financial statements information about the company under credit review. , implementation_dba_data: AR.AR_CMGT_FINANCIAL_DATA ,
-
SYNONYM: APPS.AR_CMGT_FINANCIAL_DATA
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_CMGT_FINANCIAL_DATA, status:VALID,
-
SYNONYM: APPS.AR_CMGT_FINANCIAL_DATA
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_CMGT_FINANCIAL_DATA, status:VALID,
-
VIEW: AR.AR_CMGT_FINANCIAL_DATA#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_CMGT_FINANCIAL_DATA#, status:VALID,
-
VIEW: AR.AR_CMGT_FINANCIAL_DATA#
12.2.2
-
PACKAGE BODY: APPS.AR_CMGT_CONTROLS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AR_CMGT_CONTROLS, status:VALID,
-
PACKAGE BODY: APPS.AR_CMGT_CONTROLS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AR_CMGT_CONTROLS, status:VALID,
-
TABLE: AR.AR_CMGT_FINANCIAL_DATA
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CMGT_FINANCIAL_DATA, object_name:AR_CMGT_FINANCIAL_DATA, status:VALID,
-
TABLE: AR.AR_CMGT_FINANCIAL_DATA
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CMGT_FINANCIAL_DATA, object_name:AR_CMGT_FINANCIAL_DATA, status:VALID,
-
PACKAGE BODY: APPS.AR_CMGT_DATA_POINTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AR_CMGT_DATA_POINTS_PKG, status:VALID,
-
PACKAGE BODY: APPS.AR_CMGT_DATA_POINTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AR_CMGT_DATA_POINTS_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.AR_CMGT_CONTROLS SQL Statements
12.2.2
-
APPS.AR_CMGT_CONTROLS SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.AR_CMGT_CONTROLS dependencies on AR_CMGT_FINANCIAL_DATA
12.2.2
-
APPS.AR_CMGT_CONTROLS dependencies on AR_CMGT_FINANCIAL_DATA
12.1.1
-
APPS.AR_CMGT_DATA_POINTS_PKG dependencies on AR_CMGT_FINANCIAL_DATA
12.2.2
-
APPS.AR_CMGT_DATA_POINTS_PKG dependencies on AR_CMGT_FINANCIAL_DATA
12.1.1
-
APPS.AR_CMGT_DATA_POINTS_PKG SQL Statements
12.1.1
-
APPS.AR_CMGT_DATA_POINTS_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AR_CMGT_CONTROLS
12.2.2
-
PACKAGE BODY: APPS.AR_CMGT_CONTROLS
12.1.1
-
PACKAGE BODY: APPS.AR_CMGT_DATA_POINTS_PKG
12.1.1
-
PACKAGE BODY: APPS.AR_CMGT_DATA_POINTS_PKG
12.2.2
-
APPS.AR_CMGT_WF_ENGINE dependencies on AR_CMGT_CONTROLS
12.1.1
-
APPS.AR_CMGT_WF_ENGINE dependencies on AR_CMGT_CONTROLS
12.2.2
-
APPS.AR_CMGT_DATA_POINTS_PKG dependencies on AR_CMGT_UTIL
12.1.1
-
APPS.AR_CMGT_DATA_POINTS_PKG dependencies on AR_CMGT_UTIL
12.2.2
-
PACKAGE BODY: APPS.AR_CMGT_WF_ENGINE
12.1.1
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
PACKAGE BODY: APPS.AR_CMGT_WF_ENGINE
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,