Search Results invoice_to_org_id
Overview
The OE_AR_CUSTOMER_PROFILES_V view is an APPS-owned, VALID database view shipped with Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 under the Order Management (ONT) product. It provides a consolidated, denormalized projection of customer profile information relevant to order capture and Receivables processing: payment terms, the sold-to customer account, the invoice-to (bill-to) site use, and the ship-to site use. Rather than requiring callers to navigate the underlying Oracle Trading Community Architecture (TCA) model directly, the view publishes a compact, integration-friendly result set keyed on identifiers that downstream EBS APIs and reports expect.
The view is particularly significant because it exposes INVOICE_TO_ORG_ID. In EBS, the internal identifier used for a bill-to site use in order and invoicing contexts is a SITE_USE_ID from HZ_CUST_SITE_USES, not the customer account identifier. Terminology in external systems frequently refers to this as an "org ID," which is a common source of confusion for developers searching on invoice_to_org_id. This view resolves that ambiguity by aliasing the bill-to SITE_USE_ID explicitly as INVOICE_TO_ORG_ID, making it usable in order import, invoice generation, and interface contexts without additional joins.
Underlying Base Objects
The documented base objects are three TCA synonyms: HZ_CUSTOMER_PROFILES, HZ_CUST_ACCOUNTS, and HZ_CUST_SITE_USES. The view joins them as follows:
HZ_CUSTOMER_PROFILES(aliasPROF) is the driving table, supplying the customer profile rows, the payment term (STANDARD_TERMS), and the join keySITE_USE_IDto the site-use tables.HZ_CUST_ACCOUNTS(aliasCUST_ACCT) supplies the customer account identifier via the join onCUST_ACCOUNT_ID, yielding the sold-to account.HZ_CUST_SITE_USESis joined twice asINV_SITEandSHIP_SITE, both onSITE_USE_ID, filtered bySITE_USE_CODE = 'BILL_TO'andSITE_USE_CODE = 'SHIP_TO'respectively.
Both HZ_CUST_SITE_USES joins are outer joins (indicated by the (+) operators), so a profile row is still returned even when no bill-to or ship-to site use exists; in those cases the corresponding columns are NULL. Because the joins rely on PROF.SITE_USE_ID relating to both bill-to and ship-to rows, the view effectively surfaces a site use in both capacities when a single SITE_USE_ID carries the relevant use codes.
Key Columns
PAYMENT_TERM_ID— sourced fromPROF.STANDARD_TERMS; the payment terms identifier used for the customer profile.SOLD_TO_ORG_ID— sourced fromCUST_ACCT.CUST_ACCOUNT_ID; the sold-to customer account identifier.INVOICE_TO_ORG_ID— sourced fromINV_SITE.SITE_USE_ID; the bill-to site use identifier (theSITE_USE_IDforBILL_TO).SHIP_TO_ORG_ID— sourced fromSHIP_SITE.SITE_USE_ID; the ship-to site use identifier (SITE_USE_IDforSHIP_TO).
Common Use Cases and Queries
Typical uses include looking up the bill-to site use for a customer profile during order import, populating default invoicing attributes in order and invoice interfaces, and reporting on payment terms and site-use relationships. A representative query is:
SELECT SOLD_TO_ORG_ID, INVOICE_TO_ORG_ID, SHIP_TO_ORG_ID, PAYMENT_TERM_ID FROM APPS.OE_AR_CUSTOMER_PROFILES_V WHERE INVOICE_TO_ORG_ID = :p_site_use_id;SELECT SOLD_TO_ORG_ID, SHIP_TO_ORG_ID FROM APPS.OE_AR_CUSTOMER_PROFILES_V WHERE PAYMENT_TERM_ID = :p_term_id;- Join to
HZ_CUST_SITE_USESonINVOICE_TO_ORG_ID = SITE_USE_IDto retrieve bill-to address details for invoice presentation.
Because the view performs no filtering beyond the site-use codes in its join conditions, qualifying queries by SOLD_TO_ORG_ID or INVOICE_TO_ORG_ID is advisable for performance in high-volume environments.
-
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: 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: 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_CRM_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_HEADERS_V, object_name:OE_CRM_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_headers_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_HEADERS_V ,
-
View: OE_CRM_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_HEADERS_V, object_name:OE_CRM_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_headers_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_HEADERS_V ,
-
View: OE_AK_DELIVER_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_DELIVER_TO_ORGS_V, object_name:OE_AK_DELIVER_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_DELIVER_TO_ORGS_V ,
-
View: OE_AK_DELIVER_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_DELIVER_TO_ORGS_V, object_name:OE_AK_DELIVER_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_DELIVER_TO_ORGS_V ,
-
View: OE_AK_SHIP_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIP_TO_ORGS_V, object_name:OE_AK_SHIP_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SHIP_TO_ORGS_V ,
-
View: OE_AK_SHIP_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIP_TO_ORGS_V, object_name:OE_AK_SHIP_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SHIP_TO_ORGS_V ,
-
View: OEBV_CUSTOMER_AGREEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEBV_CUSTOMER_AGREEMENTS ONT.OEBV_CUSTOMER_AGREEMENTS, object_name:OEBV_CUSTOMER_AGREEMENTS, status:VALID, product: ONT - Order Management , description: Base BIS Business View for Customer Agreements. , implementation_dba_data: APPS.OEBV_CUSTOMER_AGREEMENTS ,
-
View: OEBV_CUSTOMER_AGREEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEBV_CUSTOMER_AGREEMENTS ONT.OEBV_CUSTOMER_AGREEMENTS, object_name:OEBV_CUSTOMER_AGREEMENTS, status:VALID, product: ONT - Order Management , description: Base BIS Business View for Customer Agreements. , implementation_dba_data: APPS.OEBV_CUSTOMER_AGREEMENTS ,
-
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: OE_AK_BLANKET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_BLANKET_LINES_V, object_name:OE_AK_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_BLANKET_LINES_V ,
-
View: OE_PRN_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_HEADERS_V, object_name:OE_PRN_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_PRN_ORDER_HEADERS_V ,
-
View: OE_AK_BLANKET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_BLANKET_LINES_V, object_name:OE_AK_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_BLANKET_LINES_V ,
-
View: OEFV_ORDER_AGREEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_AGREEMENTS, object_name:OEFV_ORDER_AGREEMENTS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_ORDER_AGREEMENTS ,
-
View: OEFV_ORDER_AGREEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_AGREEMENTS, object_name:OEFV_ORDER_AGREEMENTS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_ORDER_AGREEMENTS ,
-
View: OE_PRN_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_HEADERS_V, object_name:OE_PRN_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_PRN_ORDER_HEADERS_V ,
-
View: OE_CRM_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_LINES_V, object_name:OE_CRM_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_lines_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_LINES_V ,
-
View: OE_AK_BLANKET_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_BLANKET_HEADERS_V, object_name:OE_AK_BLANKET_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_BLANKET_HEADERS_V ,
-
View: OE_CRM_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_LINES_V, object_name:OE_CRM_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_lines_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_LINES_V ,
-
View: OE_BLKTPRT_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKTPRT_LINES_V, object_name:OE_BLKTPRT_LINES_V, status:VALID, product: ONT - Order Management , description: This view is used to print the blanket lines information from the blanket sales agreement , implementation_dba_data: APPS.OE_BLKTPRT_LINES_V ,
-
View: OE_BLKTPRT_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKTPRT_LINES_V, object_name:OE_BLKTPRT_LINES_V, status:VALID, product: ONT - Order Management , description: This view is used to print the blanket lines information from the blanket sales agreement , implementation_dba_data: APPS.OE_BLKTPRT_LINES_V ,
-
View: OE_AK_BLANKET_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_BLANKET_HEADERS_V, object_name:OE_AK_BLANKET_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_BLANKET_HEADERS_V ,
-
View: OE_ORDER_LINES_AUDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_AUDIT_V, object_name:OE_ORDER_LINES_AUDIT_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_AUDIT_V ,
-
View: OE_ORDER_LINES_AUDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_AUDIT_V, object_name:OE_ORDER_LINES_AUDIT_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_AUDIT_V ,
-
View: OEFV_CUSTOMER_AGREEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_CUSTOMER_AGREEMENTS ONT.OEFV_CUSTOMER_AGREEMENTS, object_name:OEFV_CUSTOMER_AGREEMENTS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_CUSTOMER_AGREEMENTS ,
-
View: OEFV_CUSTOMER_AGREEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_CUSTOMER_AGREEMENTS ONT.OEFV_CUSTOMER_AGREEMENTS, object_name:OEFV_CUSTOMER_AGREEMENTS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_CUSTOMER_AGREEMENTS ,
-
View: OE_PRN_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_LINES_V, object_name:OE_PRN_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: The view is for obtaining line details for printing a sales order , implementation_dba_data: APPS.OE_PRN_ORDER_LINES_V ,
-
View: OE_LINE_ACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
View: OE_PRN_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_LINES_V, object_name:OE_PRN_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: The view is for obtaining line details for printing a sales order , implementation_dba_data: APPS.OE_PRN_ORDER_LINES_V ,
-
View: OE_LINE_ACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
View: OE_AK_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_HEADERS_V, object_name:OE_AK_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_HEADERS_V ,
-
View: OE_AK_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_HEADERS_V, object_name:OE_AK_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_HEADERS_V ,
-
View: OEFV_ORDER_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_LINES, object_name:OEFV_ORDER_LINES, status:VALID, product: ONT - Order Management , description: Full BIS View for Order lines , implementation_dba_data: APPS.OEFV_ORDER_LINES ,
-
View: OEFV_ORDER_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_LINES, object_name:OEFV_ORDER_LINES, status:VALID, product: ONT - Order Management , description: Full BIS View for Order lines , implementation_dba_data: APPS.OEFV_ORDER_LINES ,
-
View: OE_BLANKET_HDRS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HDRS_HIST_V, object_name:OE_BLANKET_HDRS_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HDRS_HIST_V ,
-
View: OE_BLANKET_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HEADERS_V, object_name:OE_BLANKET_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HEADERS_V ,
-
View: OE_BLANKET_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HEADERS_V, object_name:OE_BLANKET_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HEADERS_V ,
-
View: OE_BLANKET_HDRS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HDRS_HIST_V, object_name:OE_BLANKET_HDRS_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HDRS_HIST_V ,
-
View: OE_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_V, object_name:OE_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View for Order header used in sales order form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_V ,
-
View: OE_HEADER_ACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_HEADER_ACKS_V, object_name:OE_HEADER_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Headers. , implementation_dba_data: APPS.OE_HEADER_ACKS_V ,
-
View: OE_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_V, object_name:OE_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View for Order header used in sales order form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_V ,
-
View: OE_HEADER_ACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_HEADER_ACKS_V, object_name:OE_HEADER_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Headers. , implementation_dba_data: APPS.OE_HEADER_ACKS_V ,
-
View: OE_AK_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_LINES_V, object_name:OE_AK_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_LINES_V ,
-
View: OE_AK_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_LINES_V, object_name:OE_AK_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_LINES_V ,
-
View: OE_ORDER_HEADERS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_HIST_V, object_name:OE_ORDER_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve the Order History. This is used by the history form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_HIST_V ,
-
View: OE_ORDER_HEADERS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_HIST_V, object_name:OE_ORDER_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve the Order History. This is used by the history form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_HIST_V ,
-
View: OE_SCH_RSV_SET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_LINES_V ,
-
View: OE_SCH_RSV_SET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_LINES_V ,