Search Results jtf_cust_accounts_all_v
Overview
JTF_CUST_ACCOUNTS_ALL_V is an APPS-owned database view in the Oracle E-Business Suite CRM Foundation (JTF) product, valid in both release 12.1.1 and 12.2.2. Its documented purpose is to expose the account information of a party. The view does not introduce new business logic, transformation, or filtering: it is described as identical to the underlying table HZ_CUST_ACCOUNTS and was created so that it serves as a single point of interface to the AR schema object. In practice, this makes JTF_CUST_ACCOUNTS_ALL_V a compatibility and decoupling layer. CRM Foundation code, and third-party components built against the JTF data model, can reference customer account data through a stable name rather than binding directly to the Receivables (AR) base table. For reporting and integration, the view behaves as a one-to-one projection of HZ_CUST_ACCOUNTS, so it inherits that table's grain: one row per customer account record.
Because the underlying table is the transactional owner of customer account data, the view is read-mostly in reporting scenarios. Responsibility for the data remains with Receivables; the view is the access path, not the source of truth. The presence of the WHO columns and the standard program/request columns confirms that the view surfaces the full concurrency and audit context of each row.
Underlying Base Objects
The documented metadata lists a single referenced base object: HZ_CUST_ACCOUNTS, accessed through a SYNONYM. The view text is a flat SELECT of column names mapped to identically named columns of that table, with no joins, unions, or filters. This is consistent with the description that the view is identical to the table.
HZ_CUST_ACCOUNTS is the Trading Community Architecture (TCA) table that stores customer accounts, each linked to a party via PARTY_ID. TCA permits one party to own multiple accounts, so the join key between this view and HZ_PARTIES is PARTY_ID, and the primary key of the view is CUST_ACCOUNT_ID. Because the view is a synonym-based pass-through, its query plan reduces to a simple table access on HZ_CUST_ACCOUNTS (full scan or unique/index scan on CUST_ACCOUNT_ID), and any index available on the base table is equally usable through the view.
Key Columns
- CUST_ACCOUNT_ID — Primary key of the customer account; the join key to AR and CRM transaction tables.
- PARTY_ID — Identifier of the owning party in TCA; the join key to HZ_PARTIES and related party views.
- ACCOUNT_NUMBER — User-visible account number used in correspondence and lookups.
- LAST_UPDATE_DATE, CREATION_DATE, CREATED_BY, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard WHO audit and concurrency columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — Concurrent program context for rows created or updated by batch process.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE20 — DFF (Descriptive Flexfield) context and segment values.
- GLOBAL_ATTRIBUTE_CATEGORY and GLOBAL_ATTRIBUTE1–GLOBAL_ATTRIBUTE20 — Global DFF context and segment values.
Common Use Cases and Queries
Typical uses include TCA-based account extracts, CRM-to-AR reconciliation, and integrations that must remain insulated from direct dependencies on the AR base table.
- Account lookup by number:
SELECT cust_account_id, party_id, account_number FROM jtf_cust_accounts_all_v WHERE account_number = :acct_number; - Accounts for a party:
SELECT cust_account_id, account_number FROM jtf_cust_accounts_all_v WHERE party_id = :party_id; - Reconcile the view against its base table:
SELECT COUNT(*) FROM jtf_cust_accounts_all_v MINUS SELECT COUNT(*) FROM hz_cust_accounts;
Regarding the searched term acct_life_cycle_status: this attribute is not among the columns documented for JTF_CUST_ACCOUNTS_ALL_V above. Account lifecycle status is normally held on TCA party/account profile tables rather than on HZ_CUST_ACCOUNTS itself, so callers searching for it should query the appropriate status or profile view for the party, joined by CUST_ACCOUNT_ID or PARTY_ID. Users must not assume this column is exposed here; verify against the live view definition in the target instance.
-
View: JTF_CUST_ACCOUNTS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_CUST_ACCOUNTS_ALL_V, object_name:JTF_CUST_ACCOUNTS_ALL_V, status:VALID, product: JTF - CRM Foundation , description: Account information of a Party. This view is identical to the underlying table HZ_CUST_ACCOUNTS. View is created so that it serves as a single poing of interface to the AR schema object. , implementation_dba_data: APPS.JTF_CUST_ACCOUNTS_ALL_V ,
-
View: JTF_CUST_ACCOUNTS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_CUST_ACCOUNTS_ALL_V, object_name:JTF_CUST_ACCOUNTS_ALL_V, status:VALID, product: JTF - CRM Foundation , description: Account information of a Party. This view is identical to the underlying table HZ_CUST_ACCOUNTS. View is created so that it serves as a single poing of interface to the AR schema object. , implementation_dba_data: APPS.JTF_CUST_ACCOUNTS_ALL_V ,
-
VIEW: APPS.CS_NEW_INCIDENTS_V_SEC
12.2.2
-
APPS.IEX_ROUTING_PVT SQL Statements
12.1.1
-
VIEW: APPS.CS_NEW_INCIDENTS_V_SEC
12.1.1
-
VIEW: APPS.CS_NEW_INCIDENTS_V
12.1.1
-
PACKAGE BODY: APPS.CS_SR_FUL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_FUL_PKG, status:VALID,
-
PACKAGE BODY: APPS.IEX_ROUTING_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_ROUTING_PVT, status:VALID,
-
APPS.IEX_ROUTING_PVT SQL Statements
12.2.2
-
VIEW: APPS.CS_NEW_INCIDENTS_V
12.2.2
-
PACKAGE BODY: APPS.IEX_ROUTING_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEX_ROUTING_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_SR_FUL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_FUL_PKG, status:VALID,
-
View: CS_NEW_INCIDENTS_V_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V_SEC, object_name:CS_NEW_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: This is a secured view created on top of the view CS_NEW_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V_SEC ,
-
View: CS_NEW_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID, product: CS - Service , description: This is a simplified version of view CS_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V ,
-
View: CS_NEW_INCIDENTS_V_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V_SEC, object_name:CS_NEW_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: This is a secured view created on top of the view CS_NEW_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V_SEC ,
-
View: CS_NEW_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID, product: CS - Service , description: This is a simplified version of view CS_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V ,
-
VIEW: APPS.CS_INCIDENTS_V
12.2.2
-
VIEW: APPS.CS_INCIDENTS_V
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.CS_NEW_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID,
-
VIEW: APPS.CS_NEW_INCIDENTS_V_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V_SEC, object_name:CS_NEW_INCIDENTS_V_SEC, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.CS_NEW_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID,
-
VIEW: APPS.CS_NEW_INCIDENTS_V_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V_SEC, object_name:CS_NEW_INCIDENTS_V_SEC, status:VALID,
-
APPS.CS_SR_FUL_PKG SQL Statements
12.2.2
-
APPS.CS_SR_FUL_PKG SQL Statements
12.1.1
-
View: CS_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_V, object_name:CS_INCIDENTS_V, status:VALID, product: CS - Service , description: Service requests and their attributes. This view is used by the main service request form. , implementation_dba_data: APPS.CS_INCIDENTS_V ,
-
View: CS_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_V, object_name:CS_INCIDENTS_V, status:VALID, product: CS - Service , description: Service requests and their attributes. This view is used by the main service request form. , implementation_dba_data: APPS.CS_INCIDENTS_V ,
-
View: XNS_INCIDENTS_V
12.1.1
product: XNS - Service for Communications (obsolete) , description: Service requests and their attributes , implementation_dba_data: Not implemented in this database ,
-
View: XNS_INCIDENTS_V
12.2.2
product: XNS - Service for Communications (Obsolete) , description: Service requests and their attributes , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.CSD_INCIDENTS_V
12.2.2
-
VIEW: APPS.CSD_INCIDENTS_NON_SEC_V
12.2.2
-
VIEW: APPS.CSD_INCIDENTS_NON_SEC_V
12.1.1
-
VIEW: APPS.CSD_INCIDENTS_V
12.1.1
-
PACKAGE BODY: APPS.IEX_ROUTING_PVT
12.2.2
-
PACKAGE BODY: APPS.IEX_ROUTING_PVT
12.1.1
-
View: CSD_INCIDENTS_NON_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_NON_SEC_V, object_name:CSD_INCIDENTS_NON_SEC_V, status:VALID, product: CSD - Depot Repair , description: The view for getting service request information. , implementation_dba_data: APPS.CSD_INCIDENTS_NON_SEC_V ,
-
View: CSD_INCIDENTS_NON_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_NON_SEC_V, object_name:CSD_INCIDENTS_NON_SEC_V, status:VALID, product: CSD - Depot Repair , description: The view for getting service request information. , implementation_dba_data: APPS.CSD_INCIDENTS_NON_SEC_V ,
-
VIEW: APPS.CSD_INCIDENTS_NON_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_NON_SEC_V, object_name:CSD_INCIDENTS_NON_SEC_V, status:VALID,
-
View: CSD_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_V, object_name:CSD_INCIDENTS_V, status:VALID, product: CSD - Depot Repair , description: The view for getting service request information. , implementation_dba_data: APPS.CSD_INCIDENTS_V ,
-
VIEW: APPS.CSD_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_V, object_name:CSD_INCIDENTS_V, status:VALID,
-
VIEW: APPS.CSD_INCIDENTS_NON_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_NON_SEC_V, object_name:CSD_INCIDENTS_NON_SEC_V, status:VALID,
-
View: CSD_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_V, object_name:CSD_INCIDENTS_V, status:VALID, product: CSD - Depot Repair , description: The view for getting service request information. , implementation_dba_data: APPS.CSD_INCIDENTS_V ,
-
VIEW: APPS.CSD_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_INCIDENTS_V, object_name:CSD_INCIDENTS_V, status:VALID,
-
APPS.IEX_ROUTING_PVT dependencies on JTF_CUST_ACCOUNTS_ALL_V
12.1.1
-
APPS.CS_SR_FUL_PKG dependencies on JTF_CUST_ACCOUNTS_ALL_V
12.1.1
-
APPS.IEX_ROUTING_PVT dependencies on JTF_CUST_ACCOUNTS_ALL_V
12.2.2
-
APPS.CS_SR_FUL_PKG dependencies on JTF_CUST_ACCOUNTS_ALL_V
12.2.2