Search Results bill_to_contact
Overview
BIC_ORDERS_SUMMARY_V is a reporting view historically shipped within the Oracle Customer Intelligence (BIC) product family in Oracle E-Business Suite releases 12.1.1 and 12.2.2. It presents a consolidated, flattened summary of order header information drawn from the Order Management transactional schema, enriched with customer, address, contact, and order type attributes. The view was intended to feed customer intelligence dashboards, order analytics, and downstream reporting extracts without requiring report authors to reconstruct the complex multi-table joins between order headers, trading partners, and address hierarchies.
In the ETRM metadata for release 12.2.2, this object is documented as part of the BIC – Customer Intelligence module, which is now classified as obsolete. The metadata also records that the view is "not implemented in this database," meaning it is not deployed in the reference environment from which the ETRM content was generated. Consequently, references to this view may appear in legacy customizations, seeded reports, or migration inventories even though the object itself is absent from current installations.
The view is defined with a WITH READ ONLY clause, confirming that it is strictly a query-only construct and cannot be used for DML operations.
Underlying Base Objects
The view text joins several Oracle EBS base objects. The driving source is ASO_I_OE_ORDER_HEADERS_V, an Order Management header view that supplies the core order attributes such as ORDER_NUMBER, ORDERED_DATE, HEADER_ID, and CUST_PO_NUMBER. Customer Intelligence components BIC_ADDRESS_V (aliased twice, for bill-to and ship-to addresses) and standard Trading Community Architecture (TCA) tables — HZ_PARTIES, HZ_CUST_SITE_USES_ALL, HZ_CUST_ACCT_SITES_ALL, HZ_PARTY_SITES — provide contact and address detail through two parallel hierarchies (invoice-to and ship-to). OE_TRANSACTION_TYPES_TL supplies the translated order type name.
All joins to the TCA and order type objects are outer joins, ensuring that order headers are retained even when customer, address, or order type reference data is incomplete. The ETRM metadata records no documented referenced base objects for the 12.2.2 extraction, so the join relationships above are derived from the supplied view text rather than from a formal object registry.
Key Columns
- CUSTOMER_ID, ORG_ID, HEADER_ID — Identifiers linking the summary row to the sold-to customer, operating unit, and originating order header.
- ORDER_NUMBER, ORDERED_DATE, CREATION_DATE, OPEN_FLAG — Core order lifecycle attributes.
- ORDER_TYPE — Translated transaction type name from OE_TRANSACTION_TYPES_TL.
- BILL_TO_CONTACT, BILL_TO, SHIP_TO — Concatenated contact name and formatted addresses for the invoice-to and ship-to parties.
- PURCHASE_ORDER — Sourced from A.CUST_PO_NUMBER; this is the customer purchase order reference captured on the order header and is the column most relevant to users searching for "purchase_order."
- SALESREP_ID, TRANSACTIONAL_CURR_CODE — Sales representative and order currency.
- INVOICING_RULE_ID, PAYMENT_TERM_ID, PRICE_LIST_ID, AGREEMENT_ID — Financial and commercial reference identifiers attached to the order header.
Common Use Cases and Queries
Typical usage centers on order-level reporting where customer purchase order references, ship-to/bill-to detail, and order type context must be presented together. Because the view is obsolete and may not exist in a given environment, queries should be executed only after confirming object availability in ALL_VIEWS.
SELECT ORDER_NUMBER, ORDERED_DATE, PURCHASE_ORDER, ORDER_TYPE, SHIP_TO
FROM BIC_ORDERS_SUMMARY_V
WHERE PURCHASE_ORDER = 'PO-10045'
AND ORG_ID = 204;
A second common pattern aggregates open orders by customer for intelligence extracts:
SELECT CUSTOMER_ID, COUNT(*) ORDER_COUNT
FROM BIC_ORDERS_SUMMARY_V
WHERE OPEN_FLAG = 'Y'
GROUP BY CUSTOMER_ID;
In 12.1.1 and 12.2.2 environments where BIC is no longer licensed or the view is undeployed, equivalent output should be obtained from ASO_I_OE_ORDER_HEADERS_V joined directly to the TCA tables, replicating the view text supplied in the ETRM metadata.
-
Lookup Type: UPDATE_LTR_GROUPING_CRITERIA
12.2.2
product: CS - Service , meaning: UPDATE_LTR_GROUPING_CRITERIA , description: Grouping Criteria for letters ,
-
Lookup Type: UPDATE_LTR_GROUPING_CRITERIA
12.1.1
product: CS - Service , meaning: UPDATE_LTR_GROUPING_CRITERIA , description: Grouping Criteria for letters ,
-
View: BIC_ORDERS_SUMMARY_V
12.2.2
product: BIC - Customer Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_ORDERS_SUMMARY_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: OE_CUST_SITE_PHONE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUST_SITE_PHONE_V ,
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID,
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID,
-
Lookup Type: PV_BILL_ADDR_TYPE
12.2.2
product: PV - Partner Management , meaning: Types of Billing Addresses , description: List of the types of billing addresses ,
-
Lookup Type: PV_BILL_ADDR_TYPE
12.1.1
product: PV - Partner Management , meaning: Types of Billing Addresses , description: List of the types of billing addresses ,
-
VIEW: APPS.OE_CUST_SITE_PHONE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID,
-
VIEW: APPS.OE_CUST_SITE_PHONE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID,
-
View: OE_CUST_SITE_PHONE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUST_SITE_PHONE_V ,
-
VIEW: APPS.OE_CUST_SITE_PHONE_V
12.1.1
-
VIEW: APPS.OE_CUST_SITE_PHONE_V
12.2.2
-
View: OE_CUSTOMER_SITE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_SITE_CONTACTS_V ,
-
VIEW: APPS.CS_SYSTEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEMS_V, object_name:CS_SYSTEMS_V, status:VALID,
-
View: OE_CUSTOMER_SITE_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_SITE_CONTACTS_V ,
-
View: CS_SYSTEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEMS_V, object_name:CS_SYSTEMS_V, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_SYSTEMS_V ,
-
VIEW: APPS.CSI_SYSTEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_SYSTEMS_V, object_name:CSI_SYSTEMS_V, status:VALID,
-
Lookup Type: OM_HEADER_TO_LINE_CASCADE
12.1.1
product: ONT - Order Management , meaning: OM: Header To Line Cascade Attributes , description: To decide whether the cascading feature for a attribute is turned on or not ,
-
Lookup Type: OM_HEADER_TO_LINE_CASCADE
12.2.2
product: ONT - Order Management , meaning: OM: Header To Line Cascade Attributes , description: To decide whether the cascading feature for a attribute is turned on or not ,
-
VIEW: APPS.CS_SYSTEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEMS_V, object_name:CS_SYSTEMS_V, status:VALID,
-
View: CS_SYSTEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEMS_V, object_name:CS_SYSTEMS_V, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_SYSTEMS_V ,
-
View: CSI_SYSTEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_SYSTEMS_V, object_name:CSI_SYSTEMS_V, status:VALID, product: CSI - Install Base , description: System Details with foreign key resolutions. , implementation_dba_data: APPS.CSI_SYSTEMS_V ,
-
VIEW: CS.CS_INCIDENTS_ALL_B#
12.2.2
-
VIEW: APPS.CSI_SYSTEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_SYSTEMS_V, object_name:CSI_SYSTEMS_V, status:VALID,
-
VIEW: APPS.OEFV_ORDER_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_HEADERS, object_name:OEFV_ORDER_HEADERS, status:VALID,
-
VIEW: APPS.OEFV_ORDER_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_HEADERS, object_name:OEFV_ORDER_HEADERS, status:VALID,
-
View: CSI_SYSTEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_SYSTEMS_V, object_name:CSI_SYSTEMS_V, status:VALID, product: CSI - Install Base , description: System Details with foreign key resolutions. , implementation_dba_data: APPS.CSI_SYSTEMS_V ,
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.1.1
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.2.2
-
View: OEFV_ORDER_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_HEADERS, object_name:OEFV_ORDER_HEADERS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_ORDER_HEADERS ,
-
VIEW: APPS.CSI_SYSTEMS_V
12.1.1
-
VIEW: APPS.CSI_SYSTEMS_V
12.2.2
-
VIEW: APPS.CS_SYSTEMS_V
12.1.1
-
View: OEFV_ORDER_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_HEADERS, object_name:OEFV_ORDER_HEADERS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_ORDER_HEADERS ,
-
VIEW: APPS.CS_SYSTEMS_V
12.2.2
-
VIEW: APPS.IBE_ORDER_LINE_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_LINE_DTL_V, object_name:IBE_ORDER_LINE_DTL_V, status:VALID,
-
VIEW: APPS.IBE_ORDER_LINE_DTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_LINE_DTL_V, object_name:IBE_ORDER_LINE_DTL_V, status:VALID,
-
View: IBE_ORDER_LINE_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_LINE_DTL_V, object_name:IBE_ORDER_LINE_DTL_V, status:VALID, product: IBE - iStore , description: Stores information about details of an order line , implementation_dba_data: APPS.IBE_ORDER_LINE_DTL_V ,
-
View: IBE_ORDER_LINE_DTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_LINE_DTL_V, object_name:IBE_ORDER_LINE_DTL_V, status:VALID, product: IBE - iStore , description: Stores information about details of an order line , implementation_dba_data: APPS.IBE_ORDER_LINE_DTL_V ,
-
VIEW: APPS.OEFV_ORDER_HEADERS
12.1.1
-
VIEW: APPS.OEFV_ORDER_HEADERS
12.2.2
-
VIEW: CS.CS_INCIDENTS_ALL_B#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_INCIDENTS_ALL_B#, status:VALID,
-
PACKAGE: APPS.CN_ADJUSTMENTS_PKG
12.2.2
-
PACKAGE: APPS.CN_ADJUSTMENTS_PKG
12.1.1
-
TABLE: CS.CS_INCIDENTS_ALL_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_ALL_B, object_name:CS_INCIDENTS_ALL_B, status:VALID,
-
TABLE: CS.CS_INCIDENTS_ALL_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_ALL_B, object_name:CS_INCIDENTS_ALL_B, status:VALID,
-
PACKAGE: APPS.IEM_SERVICEREQUEST_PVT
12.1.1
-
PACKAGE: APPS.IEM_SERVICEREQUEST_PVT
12.2.2