Search Results hz_cust_site_uses
Overview
APPS.OE_AR_CUSTOMER_PROFILES_V is a reporting and integration view in the Oracle E-Business Suite Order Management and Receivables schema. It exposes a compact projection of customer profile data, resolving the relationship between a customer account, its payment terms, and the specific site uses designated as bill-to and ship-to destinations. In the Oracle EBS 12.1.1 and 12.2.2 releases, the trading community model is built on the HZ (Trading Community Architecture) tables rather than the legacy RA/RH customer tables, and this view provides a simplified, denormalized surface over that model.
The view is principally used by Order Management and Receivables logic and by downstream reporting that needs to map an order's sold-to, invoice-to, and ship-to organizations. Because it returns identifiers rather than descriptive attributes, it functions as a bridge view: callers join it to HZ_CUST_ACCOUNTS, HZ_CUST_SITE_USES, or HZ_CUST_ACCT_SITES_ALL to obtain names, addresses, and site details. It is documented in the ETRM as a view owned by APPS with base objects exposed through synonyms.
Underlying Base Objects
The documented base objects referenced by this view are HZ_CUSTOMER_PROFILES, HZ_CUST_ACCOUNTS, and HZ_CUST_SITE_USES, each accessed through a public synonym. The view text joins these three objects as follows:
- HZ_CUSTOMER_PROFILES (PROF) — the driving table, supplying the payment term (STANDARD_TERMS) and the profile-level SITE_USE_ID used to anchor the bill-to and ship-to lookups.
- HZ_CUST_ACCOUNTS (CUST_ACCT) — joined on CUST_ACCOUNT_ID to resolve the sold-to organization identifier.
- HZ_CUST_SITE_USES (INV_SITE, SHIP_SITE) — outer-joined twice, once for SITE_USE_CODE = 'BILL_TO' and once for SITE_USE_CODE = 'SHIP_TO', to derive the invoice-to and ship-to site use identifiers.
The join between the profile and each site-use alias is an outer join on SITE_USE_ID, so a profile row is returned even when a matching bill-to or ship-to site use does not exist; in that case the corresponding INVOICE_TO_ORG_ID or SHIP_TO_ORG_ID is null. The relationship to HZ_CUST_ACCOUNTS is an inner join on CUST_ACCOUNT_ID, so only profiles tied to a valid customer account are surfaced.
Key Columns
- PAYMENT_TERM_ID — aliased from PROF.STANDARD_TERMS. Identifies the standard payment term associated with the customer profile.
- SOLD_TO_ORG_ID — aliased from CUST_ACCT.CUST_ACCOUNT_ID. The customer account identifier representing the sold-to organization.
- INVOICE_TO_ORG_ID — aliased from INV_SITE.SITE_USE_ID. The site use identifier flagged as BILL_TO for the profile's site.
- SHIP_TO_ORG_ID — aliased from SHIP_SITE.SITE_USE_ID. The site use identifier flagged as SHIP_TO.
These four columns mirror the organization and term identifiers commonly required when populating order or invoice interface structures.
Common Use Cases and Queries
The view is typically queried to resolve the default bill-to and ship-to site uses for a customer profile, often as part of order import, customer profile validation, or reconciliation reports.
- Retrieve the payment term and site uses for a specific customer account.
- Identify profiles where a BILL_TO or SHIP_TO site use is missing (null values).
- Feed order or Receivables interface tables with valid organization identifiers.
Sample query:
SELECT p.payment_term_id, p.sold_to_org_id, p.invoice_to_org_id, p.ship_to_org_id FROM apps.oe_ar_customer_profiles_v p WHERE p.sold_to_org_id = :cust_account_id;
To locate incomplete profiles, filter on the nullable columns:
SELECT sold_to_org_id FROM apps.oe_ar_customer_profiles_v WHERE invoice_to_org_id IS NULL OR ship_to_org_id IS NULL;
-
VIEW: APPS.OE_AR_CUSTOMER_PROFILES_V
12.2.2
-
VIEW: APPS.OE_AR_CUSTOMER_PROFILES_V
12.1.1
-
VIEW: APPS.CSP_RS_ADDRESS_UI_V
12.2.2
-
VIEW: APPS.ARFV_CREDIT_MEMO_ARS
12.2.2
-
VIEW: APPS.ARFV_INVOICE_ARS
12.2.2
-
VIEW: APPS.ARFV_ON_ACCOUNT_CREDIT_MEMOS
12.2.2
-
VIEW: APPS.ARFV_CREDIT_MEMO_ARS
12.1.1
-
APPS.ARH_CSU_PKG SQL Statements
12.2.2
-
VIEW: APPS.IEX_STATEMENT_V
12.2.2
-
VIEW: APPS.IEX_STATEMENT_V
12.1.1
-
VIEW: APPS.AR_STATEMENTS_V
12.1.1
-
VIEW: APPS.ARFV_DEBITS
12.2.2
-
VIEW: APPS.ARFV_CREDITS
12.2.2
-
APPS.ARH_CSU_PKG SQL Statements
12.1.1
-
VIEW: APPS.AR_STATEMENTS_V
12.2.2
-
VIEW: APPS.OE_AK_END_CUS_SITEUSE_V
12.1.1
-
VIEW: APPS.ARFV_ON_ACCOUNT_CREDIT_MEMOS
12.1.1
-
VIEW: APPS.ARFV_DEBITS
12.1.1
-
VIEW: APPS.ARFV_CREDITS
12.1.1
-
VIEW: APPS.ARFV_INVOICE_ARS
12.1.1
-
VIEW: APPS.OE_AK_END_CUS_SITEUSE_V
12.2.2
-
VIEW: APPS.OE_AK_SOLD_TO_SITE_USES_V
12.1.1
-
APPS.OM_REPORTS_MLS_LANG SQL Statements
12.2.2
-
VIEW: APPS.MRP_FORECAST_UPDATES_V
12.1.1
-
VIEW: APPS.MRP_FORECAST_UPDATES_V
12.2.2
-
View: OE_AR_CUSTOMER_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AR_CUSTOMER_PROFILES_V, object_name:OE_AR_CUSTOMER_PROFILES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AR_CUSTOMER_PROFILES_V ,
-
VIEW: APPS.OE_AK_SOLD_TO_SITE_USES_V
12.2.2
-
VIEW: APPS.WSH_SS_PARTNER_V
12.1.1
-
VIEW: APPS.WSH_SS_PARTNER_V
12.2.2
-
VIEW: APPS.AR_SHIP_ADDRESS_V
12.2.2
-
View: OE_AR_CUSTOMER_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AR_CUSTOMER_PROFILES_V, object_name:OE_AR_CUSTOMER_PROFILES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AR_CUSTOMER_PROFILES_V ,
-
VIEW: APPS.PA_OUTPUT_TAX_EXEMPT_NUMBER_V
12.2.2
-
View: AMS_AR_TRANSACTION_V
12.2.2
product: AMS - Marketing , description: Receivables Transactions , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ARFV_AR_TRANSACTIONS
12.2.2
-
View: AMS_AR_TRANSACTION_V
12.1.1
product: AMS - Marketing , description: Receivables Transactions , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OZF_X_CUST_SITE_USES
12.1.1
-
VIEW: APPS.OZF_X_CUST_SITE_USES
12.2.2
-
VIEW: APPS.IEX_LATER_STAGE_DELINQUENCY_V
12.2.2
-
VIEW: APPS.IEX_LATER_STAGE_DELINQUENCY_V
12.1.1
-
VIEW: APPS.GMS_REPORTS_V
12.1.1
-
VIEW: APPS.PA_OUTPUT_TAX_EXEMPT_NUMBER_V
12.1.1
-
VIEW: APPS.ARFV_AR_TRANSACTIONS
12.1.1
-
VIEW: APPS.AR_SHIP_ADDRESS_V
12.1.1
-
View: AR_SHIP_ADDRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_SHIP_ADDRESS_V, object_name:AR_SHIP_ADDRESS_V, status:VALID, product: AR - Receivables , description: Active Ship to Addresses , implementation_dba_data: APPS.AR_SHIP_ADDRESS_V ,
-
View: ARFV_DEBITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_DEBITS, object_name:ARFV_DEBITS, status:VALID, product: AR - Receivables , description: This shows information relating to items that increase your customer's receivable balance. Debit items remain open until the balance due is zero. , implementation_dba_data: APPS.ARFV_DEBITS ,
-
View: ARFV_DEBITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_DEBITS, object_name:ARFV_DEBITS, status:VALID, product: AR - Receivables , description: This shows information relating to items that increase your customer's receivable balance. Debit items remain open until the balance due is zero. , implementation_dba_data: APPS.ARFV_DEBITS ,
-
APPS.HZP_CUST_PKG SQL Statements
12.2.2
-
APPS.HZ_ACT_UTIL_PUB SQL Statements
12.2.2
-
VIEW: APPS.GMS_DEFAULT_REPORTS_V
12.2.2
-
View: AR_STATEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_STATEMENTS_V, object_name:AR_STATEMENTS_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_STATEMENTS_V ,