Search Results cust_account_profile_id
Overview
APPS.HZ_PROFILE_AMTS_V is a consolidated reporting view within the Oracle E-Business Suite Receivables and Trading Community Architecture (TCA) data model. Its purpose is to present credit limit amounts across the four distinct levels at which credit exposure can be defined in Oracle Credit Management: profile class, customer account, operating unit, and item category. The view uses a UNION of four subqueries, each drawn from a different underlying amount table, and normalizes the results into a single uniform row shape.
For users searching on trx_credit_limit, this view is the central integration point because each of its four branches exposes the TRX_CREDIT_LIMIT column alongside OVERALL_CREDIT_LIMIT. The view therefore allows a single query to retrieve per-transaction credit limits defined at any level of the credit hierarchy, which is essential for reporting, credit checking, and external integration. It is delivered under the APPS schema and is available in both EBS 12.1.1 and 12.2.2.
Underlying Base Objects
The view is defined over four base objects, all referenced through APPS synonyms in the documented metadata:
- HZ_CUST_PROF_CLASS_AMTS — amounts defined at the profile class level, returned with PROFILE_TYPE = 'Profile_Class'.
- HZ_CUST_PROFILE_AMTS — amounts defined at the customer account profile level, returned with PROFILE_TYPE = 'Customer'.
- HZ_CREDIT_PROFILE_AMTS — amounts defined against a credit profile, used for the Operating_Unit and Item_Category branches.
- HZ_CREDIT_PROFILES — the parent credit profile table, joined to HZ_CREDIT_PROFILE_AMTS to distinguish operating unit level rows (organization_id IS NOT NULL) from item category level rows (item_category_id IS NOT NULL).
The four SELECT statements are combined with UNION, and each branch substitutes literal -1 values for the identifier columns not relevant to that level. This technique produces a single, wide result set without NULLs in the key columns, simplifying downstream filters.
Key Columns
- PROFILE_TYPE — literal discriminator indicating the credit level: 'Profile_Class', 'Customer', 'Operating_Unit', or 'Item_Category'.
- TRX_CREDIT_LIMIT — the per-transaction credit limit amount, the primary column of interest for the searched term.
- OVERALL_CREDIT_LIMIT — the aggregate credit limit applied across all transactions for the given profile.
- CURRENCY_CODE — the currency in which the limits are expressed; limits are typically defined per currency.
- PROFILE_CLASS_ID, CUST_ACCOUNT_PROFILE_ID, CREDIT_PROFILE_ID — level-specific identifiers; the column relevant to the active PROFILE_TYPE carries a real value while others hold -1.
- PROFILE_CLASS_AMOUNT_ID, CREDIT_PROFILE_AMT_ID, CUST_ACCT_PROFILE_AMT_ID — surrogate row identifiers from the respective base amount tables.
Common Use Cases and Queries
Typical scenarios include retrieving the transaction credit limit for a specific customer account, auditing limits defined at operating unit or item category level, and feeding credit limit values into external credit-checking or reporting systems.
Retrieve all transaction credit limits for a given customer account:
SELECT profile_type, currency_code, trx_credit_limit, overall_credit_limit FROM apps.hz_profile_amts_v WHERE cust_account_profile_id = :cust_account_profile_id;
List all operating unit level limits by currency:
SELECT credit_profile_id, currency_code, trx_credit_limit FROM apps.hz_profile_amts_v WHERE profile_type = 'Operating_Unit';
Because the view blends four sources, always filter on PROFILE_TYPE or on the appropriate non-negative identifier column to avoid mixing levels. Note that the -1 sentinel values (rather than NULLs) are used consistently across all branches, so equality filters must account for this convention.
-
APPS.HZ_PROFILE_MERGE_PKG SQL Statements
12.1.1
-
APPS.HZ_PROFILE_MERGE_PKG SQL Statements
12.2.2
-
VIEW: APPS.HZ_PROFILE_AMTS_V
12.2.2
-
VIEW: APPS.OKX_CUSTOMER_PROFILES_V
12.2.2
-
VIEW: APPS.OKX_CUSTOMER_PROFILES_V
12.1.1
-
VIEW: APPS.HZ_PROFILE_AMTS_V
12.1.1
-
View: HZ_PROFILE_AMTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PROFILE_AMTS_V, object_name:HZ_PROFILE_AMTS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_PROFILE_AMTS_V ,
-
View: HZ_PROFILE_AMTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PROFILE_AMTS_V, object_name:HZ_PROFILE_AMTS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_PROFILE_AMTS_V ,
-
View: OKX_CUSTOMER_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_CUSTOMER_PROFILES_V, object_name:OKX_CUSTOMER_PROFILES_V, status:VALID, product: OKX - Contracts Integration , implementation_dba_data: APPS.OKX_CUSTOMER_PROFILES_V ,
-
PACKAGE BODY: APPS.HZ_PROFILE_MERGE_PKG
12.1.1
-
View: OKX_CUSTOMER_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_CUSTOMER_PROFILES_V, object_name:OKX_CUSTOMER_PROFILES_V, status:VALID, product: OKX - Contracts Integration , implementation_dba_data: APPS.OKX_CUSTOMER_PROFILES_V ,
-
PACKAGE BODY: APPS.HZ_PROFILE_MERGE_PKG
12.2.2
-
VIEW: APPS.HZ_PROFILE_AMTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PROFILE_AMTS_V, object_name:HZ_PROFILE_AMTS_V, status:VALID,
-
View: XNC_CUST_PROFILE_CREDIT_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_CUST_PROFILE_CREDIT_V retrieves credit profiles for customer accounts. , implementation_dba_data: Not implemented in this database ,
-
VIEW: AR.HZ_CUST_PROFILE_AMTS#
12.2.2
-
APPS.HZP_CPROF_PKG SQL Statements
12.1.1
-
VIEW: AR.HZ_CUSTOMER_PROFILES_M#
12.2.2
-
APPS.AR_CMGT_WF_ENGINE SQL Statements
12.1.1
-
View: CSC_CUST_PROFILE_CREDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUST_PROFILE_CREDIT_V, object_name:CSC_CUST_PROFILE_CREDIT_V, status:VALID, product: CSC - Customer Care , implementation_dba_data: APPS.CSC_CUST_PROFILE_CREDIT_V ,
-
View: XNC_CUST_PROFILE_CREDIT_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_CUST_PROFILE_CREDIT_V retrieves credit profiles for customer accounts. , implementation_dba_data: Not implemented in this database ,
-
VIEW: AR.HZ_CUST_PROFILE_AMTS_M#
12.2.2
-
APPS.HZP_CPROF_PKG SQL Statements
12.2.2
-
VIEW: APPS.HZ_PROFILE_AMTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PROFILE_AMTS_V, object_name:HZ_PROFILE_AMTS_V, status:VALID,
-
APPS.AR_CMGT_WF_ENGINE SQL Statements
12.2.2
-
VIEW: APPS.XNB_CUST_PROFILE_AMTS_V
12.1.1
-
View: CSC_CUST_PROFILE_CREDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUST_PROFILE_CREDIT_V, object_name:CSC_CUST_PROFILE_CREDIT_V, status:VALID, product: CSC - Customer Care , implementation_dba_data: APPS.CSC_CUST_PROFILE_CREDIT_V ,
-
VIEW: APPS.XNB_CUST_PROFILE_AMTS_V
12.2.2
-
View: JTF_CUSTOMER_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_CUSTOMER_PROFILES_V, object_name:JTF_CUSTOMER_PROFILES_V, status:VALID, product: JTF - CRM Foundation , description: JTF_CUSTOMER_PROFILES_V retrieves credit information for your customer accounts and customer account sites. , implementation_dba_data: APPS.JTF_CUSTOMER_PROFILES_V ,
-
VIEW: AR.HZ_CUSTOMER_PROFILES#
12.2.2
-
VIEW: APPS.CSC_CUST_PROFILE_CREDIT_V
12.1.1
-
Table: HZ_CUSTOMER_PROFILES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CUSTOMER_PROFILES, object_name:HZ_CUSTOMER_PROFILES, status:VALID, product: AR - Receivables , description: Credit information for customer accounts and customer account sites , implementation_dba_data: AR.HZ_CUSTOMER_PROFILES ,
-
VIEW: APPS.JTF_CUSTOMER_PROFILES_V
12.1.1
-
View: AST_CUST_PROFILE_CREDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CUST_PROFILE_CREDIT_V, object_name:AST_CUST_PROFILE_CREDIT_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CUST_PROFILE_CREDIT_V ,
-
View: AST_CUST_PROFILE_CREDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CUST_PROFILE_CREDIT_V, object_name:AST_CUST_PROFILE_CREDIT_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CUST_PROFILE_CREDIT_V ,
-
VIEW: APPS.JTF_CUSTOMER_PROFILES_V
12.2.2
-
Table: HZ_CUSTOMER_PROFILES_M
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CUSTOMER_PROFILES_M, object_name:HZ_CUSTOMER_PROFILES_M, status:VALID, product: AR - Receivables , description: This table is used to store the deleted records for hz_customer_profiles during account merge , implementation_dba_data: AR.HZ_CUSTOMER_PROFILES_M ,
-
View: JTF_CUSTOMER_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_CUSTOMER_PROFILES_V, object_name:JTF_CUSTOMER_PROFILES_V, status:VALID, product: JTF - CRM Foundation , description: JTF_CUSTOMER_PROFILES_V retrieves credit information for your customer accounts and customer account sites. , implementation_dba_data: APPS.JTF_CUSTOMER_PROFILES_V ,
-
VIEW: APPS.CSC_CUST_PROFILE_CREDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUST_PROFILE_CREDIT_V, object_name:CSC_CUST_PROFILE_CREDIT_V, status:VALID,
-
VIEW: APPS.AST_CUST_PROFILE_CREDIT_V
12.1.1
-
VIEW: APPS.CSC_CUST_PROFILE_CREDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUST_PROFILE_CREDIT_V, object_name:CSC_CUST_PROFILE_CREDIT_V, status:VALID,
-
Table: HZ_CUSTOMER_PROFILES_M
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CUSTOMER_PROFILES_M, object_name:HZ_CUSTOMER_PROFILES_M, status:VALID, product: AR - Receivables , description: This table is used to store the deleted records for hz_customer_profiles during account merge , implementation_dba_data: AR.HZ_CUSTOMER_PROFILES_M ,
-
VIEW: APPS.CSC_CUST_PROFILE_CREDIT_V
12.2.2
-
Table: HZ_CUSTOMER_PROFILES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CUSTOMER_PROFILES, object_name:HZ_CUSTOMER_PROFILES, status:VALID, product: AR - Receivables , description: Credit information for customer accounts and customer account sites , implementation_dba_data: AR.HZ_CUSTOMER_PROFILES ,
-
VIEW: APPS.XNB_CUST_PROFILE_AMTS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:XNB_CUST_PROFILE_AMTS_V, status:VALID,
-
VIEW: APPS.XNB_CUST_PROFILE_AMTS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:XNB_CUST_PROFILE_AMTS_V, status:VALID,
-
VIEW: APPS.AST_CUST_PROFILE_CREDIT_V
12.2.2
-
APPS.ARP_STAGED_DUNNING SQL Statements
12.1.1
-
APPS.ARP_STAGED_DUNNING SQL Statements
12.2.2
-
VIEW: AR.HZ_CUST_PROFILE_AMTS#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_CUST_PROFILE_AMTS#, status:VALID,
-
VIEW: AR.HZ_CUST_PROFILE_AMTS_M#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_CUST_PROFILE_AMTS_M#, status:VALID,