Search Results cust_prof
Overview
The APPS.OE_AK_SOLD_TO_ORGS_V view is a seeded Oracle E-Business Suite database object delivered as part of the Order Management (ONT) application schema. It exposes a consolidated "sold-to" party/account profile organized across operating units, and it is a component of the Oracle Order Management public API and flexibility infrastructure (the OE_AK_ prefix indicates its association with Order Management attribute/descriptive-flexfield processing). The view joins customer account data, customer profile data, party records, and HR operating units into a single denormalized result set that returns the ordering attributes EBS uses to default order header values.
For reporting and integration purposes, this view is frequently used as a lookup layer where a caller needs the primary customer account attributes — price list, freight terms, shipping tolerances, order type, sales channel, standard terms, and the effective bill-to and ship-to site-use identifiers — resolved for a specific operating unit. It is heavily referenced by tools and reports searching on the term "cust_prof" because the HZ_CUSTOMER_PROFILES table is a core component of its definition, providing the STANDARD_TERMS value.
Underlying Base Objects
The view is defined over the following documented base objects:
- HZ_PARTIES (synonym) — supplies the party identity, joined to the customer account through
PARTY_ID. - HZ_CUST_ACCOUNTS (synonym) — the primary driver, providing the customer account and its ordering attributes.
- HZ_CUSTOMER_PROFILES (synonym) — joined via an outer join on
CUST_ACCOUNT_ID, with the additional restrictionSITE_USE_ID IS NULLso that only account-level (not site-level) profile rows participate. - HR_OPERATING_UNITS (view) — supplies the
ORGANIZATION_IDrepresenting the operating unit context. - MO_GLOBAL (package) — invoked as
MO_GLOBAL.CHECK_ACCESS(HR.ORGANIZATION_ID), applying Multi-Org Access Control so only operating units accessible to the current session are returned. - OE_HEADER_UTIL (package) — its
GET_PRIMARY_SITE_USE_IDfunction resolves the primaryBILL_TOandSHIP_TOsite-use identifiers for the account/organization combination.
Key Columns
- CUST_ACCOUNT_ID — the sold-to customer account identifier, the primary key context.
- PRICE_LIST_ID, FOB_POINT, FREIGHT_TERM, SHIP_PARTIAL, SHIP_VIA — default ordering and shipping attributes drawn from the account.
- INVOICE_TO_ORG_ID, SHIP_TO_ORG_ID — resolved primary site-use IDs for bill-to and ship-to, computed via
OE_HEADER_UTIL. - STANDARD_TERMS — the standard payment terms sourced from
HZ_CUSTOMER_PROFILES. - ORDER_TYPE_ID, PRIMARY_SALESREP_ID, SALES_CHANNEL_CODE — order classification and sales attribution attributes.
- WAREHOUSE_ID — the default warehouse, cast from character to numeric via
TO_NUMBER(TO_CHAR(...)). - OVER_SHIPMENT_TOLERANCE, UNDER_SHIPMENT_TOLERANCE, OVER_RETURN_TOLERANCE, UNDER_RETURN_TOLERANCE — fulfillment tolerance thresholds.
- ITEM_CROSS_REF_PREF, DATE_TYPE_PREFERENCE, DATES_NEGATIVE_TOLERANCE, DATES_POSITIVE_TOLERANCE — cross-reference and date handling preferences.
- DEFAULT_LINE_SET — derived value returning 'SHIP', 'ARRIVAL', or NULL based on the ship-set and arrival-set flags.
- ORGANIZATION_ID — the operating unit identifier from
HR_OPERATING_UNITS.
Common Use Cases and Queries
Typical usage resolves a customer's ordering defaults for an operating unit, or drives integrations that need bill-to/ship-to identifiers. A representative query:
SELECT cust_account_id, price_list_id, standard_terms, invoice_to_org_id, ship_to_org_id, default_line_set, organization_id FROM apps.oe_ak_sold_to_orgs_v WHERE cust_account_id = :p_account_id;
Because access is filtered through MO_GLOBAL.CHECK_ACCESS, callers must run with a valid Multi-Org session context (via FND_GLOBAL.APPS_INITIALIZE) or results may be empty. Joining this view to HZ_CUST_SITE_USES_ALL or HZ_CUST_ACCT_SITES_ALL is common when reporting on customer profile defaults ("cust_prof" searches), since the account-level profile is the source of STANDARD_TERMS.
-
VIEW: APPS.OE_AK_SOLD_TO_ORGS_V
12.2.2
-
VIEW: APPS.OE_AK_SOLD_TO_ORGS_V
12.1.1
-
VIEW: APPS.OKL_CS_CUST_ACCT_OVERVIEW_UV
12.1.1
-
VIEW: APPS.OKL_CS_CUST_ACCT_OVERVIEW_UV
12.2.2
-
View: OE_AK_SOLD_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SOLD_TO_ORGS_V, object_name:OE_AK_SOLD_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SOLD_TO_ORGS_V ,
-
View: OE_AK_SOLD_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SOLD_TO_ORGS_V, object_name:OE_AK_SOLD_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SOLD_TO_ORGS_V ,
-
View: OKL_CS_CUST_ACCT_OVERVIEW_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_CUST_ACCT_OVERVIEW_UV, object_name:OKL_CS_CUST_ACCT_OVERVIEW_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CS_CUST_ACCT_OVERVIEW_UV ,
-
View: OKL_CS_CUST_ACCT_OVERVIEW_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_CUST_ACCT_OVERVIEW_UV, object_name:OKL_CS_CUST_ACCT_OVERVIEW_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CS_CUST_ACCT_OVERVIEW_UV ,
-
APPS.IEX_PROFILE SQL Statements
12.1.1
-
APPS.IEX_PROFILE SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IEX_PROFILE
12.1.1
-
PACKAGE BODY: APPS.IEX_PROFILE
12.2.2
-
PACKAGE BODY: APPS.ARP_CPROF_PKG
12.1.1
-
PACKAGE BODY: APPS.ARP_CPROF_PKG
12.2.2
-
APPS.IEX_PROFILE dependencies on AR_COLLECTORS
12.1.1
-
APPS.IEX_PROFILE dependencies on AR_COLLECTORS
12.2.2
-
APPS.IEX_PROFILE dependencies on HZ_CUSTOMER_PROFILES
12.1.1
-
APPS.IEX_PROFILE dependencies on HZ_CUSTOMER_PROFILES
12.2.2
-
APPS.IEX_PROFILE dependencies on ARPT_SQL_FUNC_UTIL
12.1.1
-
APPS.IEX_PROFILE dependencies on ARPT_SQL_FUNC_UTIL
12.2.2
-
PACKAGE BODY: APPS.ARH_CPC_PKG
12.1.1
-
PACKAGE BODY: APPS.ARH_CPC_PKG
12.2.2
-
PACKAGE BODY: APPS.HZP_CPROF_PKG
12.2.2
-
PACKAGE BODY: APPS.HZP_CPROF_PKG
12.1.1
-
PACKAGE BODY: APPS.HZ_BES_BO_GEN_PKG
12.1.1
-
PACKAGE BODY: APPS.HZ_BES_BO_GEN_PKG
12.2.2
-
APPS.HZ_BES_BO_GEN_PKG dependencies on FND_MSG_PUB
12.2.2
-
APPS.HZ_BES_BO_GEN_PKG dependencies on FND_MSG_PUB
12.1.1
-
APPS.HZ_BES_BO_GEN_PKG dependencies on FND_API
12.2.2
-
APPS.HZ_BES_BO_GEN_PKG dependencies on FND_API
12.1.1
-
APPS.HZ_BES_BO_GEN_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.HZ_BES_BO_GEN_PKG dependencies on FND_MESSAGE
12.2.2