Search Results hz_party_sites
Overview
ONT.OE_LINES_IFACE_ALL is the multi-organization open interface table for sales order lines in Oracle Order Management. It is the staging and inbound processing mechanism through which external systems, legacy applications, EDI translators, and custom programs load sales order line and shipment-level data into Oracle E-Business Suite. Rows inserted into this table are picked up by the Order Management concurrent program (typically "Process Order API" / Order Import) and validated, then written into the base order tables OE_ORDER_HEADERS_ALL and OE_ORDER_LINES_ALL. Because it is an "_ALL" table, it is partitioned by ORG_ID and must always be accessed with the appropriate operating unit context in 12.1.1 and 12.2.2.
The table is exceptionally wide, with 478 columns documented in ETRM 12.2.2, reflecting the full breadth of sales order line attributes: ordering, pricing, shipping, tax, service, project, and customer (TCA) references. It also carries interface control columns (INTERFACE_STATUS, ERROR_FLAG, STATUS_FLAG, OPERATION_CODE, REQUEST_ID) that drive import processing and error reporting. The heuristic Data Vault classification mined from the foreign key structure is link, which is a reasonable modeling suggestion: the table predominantly joins business entities (customers, sites, contacts, items, organizations, rules, salesreps) rather than holding a single stable descriptive entity.
Key Information Stored
Although 478 columns exist, the following are the most operationally significant:
- ORG_ID — operating unit; the multi-org discriminator and the primary filter for all access.
- ORDER_SOURCE_ID / ORIG_SYS_DOCUMENT_REF / ORIG_SYS_LINE_REF / ORIG_SYS_SHIPMENT_REF — the source order reference and the external system's unique document, line, and shipment keys, used for idempotent re-load and reconciliation.
- LINE_ID, LINE_NUMBER, SHIPMENT_NUMBER, SPLIT_FROM_LINE_ID — line identity within the order import payload.
- INVENTORY_ITEM_ID / INVENTORY_ITEM / INVENTORY_ITEM_SEGMENT_1..20 — ordered item, supplied either by ID or by concatenated segments.
- ORDERED_QUANTITY, ORDER_QUANTITY_UOM, PRICING_QUANTITY — demand quantities and units of measure.
- SHIP_TO_PARTY_ID, SHIP_TO_PARTY_SITE_ID, SHIP_TO_PARTY_SITE_USE_ID (and the DELIVER_TO_ and INVOICE_TO_ equivalents) — TCA party, party site, and site use references; these are the columns most relevant to a search for hz_party_sites.
- SHIP_TO_CUSTOMER_ID, INVOICE_TO_CUSTOMER_ID, DELIVER_TO_CUSTOMER_ID, END_CUSTOMER_ID — TCA customer account identifiers.
- SOLD_TO_ORG_ID, SHIP_FROM_ORG_ID, SOLD_FROM_ORG_ID — organization references, all foreign keys to HR_ALL_ORGANIZATION_UNITS.
- UNIT_LIST_PRICE, UNIT_SELLING_PRICE, PRICE_LIST_ID, TAX_CODE, TAX_VALUE — pricing and tax attributes.
- INVOICING_RULE_ID, ACCOUNTING_RULE_ID, PAYMENT_TERM_ID, SALESREP_ID — commercial terms.
- INTERFACE_STATUS, ERROR_FLAG, STATUS_FLAG, OPERATION_CODE, REQUEST_ID — import processing state and error controls.
- ATTRIBUTE1..20, GLOBAL_ATTRIBUTE1..20, INDUSTRY_ATTRIBUTE1..30, PRICING_ATTRIBUTE1..10, RETURN_ATTRIBUTE1..15 — descriptive flexfield and extensibility columns.
No surrogate primary key column is documented for this interface table; it is populated and consumed as a staging area rather than as a durable keyed entity. Business-key candidates are the source combination of ORDER_SOURCE_ID, ORIG_SYS_DOCUMENT_REF, ORIG_SYS_LINE_REF, and ORIG_SYS_SHIPMENT_REF, which uniquely identify an external order line shipment across repeated imports. The foreign keys listed in ETRM (for example SHIP_TO_PARTY_SITE_ID to HZ_PARTY_SITES and SHIP_TO_PARTY_SITE_USE_ID to HZ_PARTY_SITE_USES) act as the referential integrity anchors rather than a single-row uniqueness constraint.
Common Use Cases and Queries
The dominant use case is bulk order import. A typical pattern is to stage line rows, then submit Order Import with a filter on REQUEST_ID or INTERFACE_STATUS, and finally query the table to diagnose rejected records:
- Locate unprocessed or errored lines:
SELECT LINE_NUMBER, ORIG_SYS_LINE_REF, ERROR_FLAG, INTERFACE_STATUS FROM OE_LINES_IFACE_ALL WHERE ORG_ID = :p_org AND INTERFACE_STATUS IN ('1','2') ORDER BY LINE_NUMBER; - Resolve a party site reference to its TCA definition:
SELECT l.ORIG_SYS_LINE_REF, ps.PARTY_SITE_NUMBER, ps.ADDRESS1, ps.CITY FROM OE_LINES_IFACE_ALL l, HZ_PARTY_SITES ps WHERE l.SHIP_TO_PARTY_SITE_ID = ps.PARTY_SITE_ID AND l.ORG_ID = :p_org; - Reconciliation reporting — count staged versus successfully imported lines by source system:
SELECT ORDER_SOURCE_ID, INTERFACE_STATUS, COUNT(*) FROM OE_LINES_IFACE_ALL WHERE ORG_ID = :p_org GROUP BY ORDER_SOURCE_ID, INTERFACE_STATUS;
Reporting use cases include pre-import validation reports (pricing, tax, party site completeness), source-system reconciliation, and troubleshooting of party site or customer account mismatches flagged by Order Import.
Related Objects
The interface table is joined to the following objects through documented foreign keys:
- HZ_PARTIES — via SHIP_TO_PARTY_ID, DELIVER_TO_PARTY_ID, INVOICE_TO_PARTY_ID, END_CUSTOMER_PARTY_ID.
- HZ_PARTY_SITES — via SHIP_TO_PARTY_SITE_ID, DELIVER_TO_PARTY_SITE_ID, INVOICE_TO_PARTY_SITE_ID, END_CUSTOMER_PARTY_SITE_ID; this is the relationship most directly relevant to the hz_party_sites search term.
- HZ_PARTY_SITE_USES — via SHIP_TO_PARTY_SITE_USE_ID, DELIVER_TO_PARTY_SITE_USE_ID, INVOICE_TO_PARTY_SITE_USE_ID, END_CUSTOMER_PARTY_SITE_USE_ID.
- HZ_CUST_ACCOUNTS — via SHIP_TO_CUSTOMER_ID, INVOICE_TO_CUSTOMER_ID, DELIVER_TO_CUSTOMER_ID, END_CUSTOMER_ID.
- HZ_CUST_ACCOUNT_ROLES and HZ_ORG_CONTACTS — contact role and organization contact references (END_CUSTOMER_CONTACT_ID; SHIP_TO_, DELIVER_TO_, INVOICE_TO_, END_CUSTOMER_ORG_CONTACT_ID).
- OE_ORDER_SOURCES — via ORDER_SOURCE_ID; identifies the originating order source.
- HR_ALL_ORGANIZATION_UNITS — via SHIP_FROM_ORG_ID and SOLD_FROM_ORG_ID.
- RA_RULES, RA_SALESREPS_ALL, RA_TERMS_B — invoicing/accounting rules, salesreps, and payment terms.
- PO_LINE_TYPES_B, MTL_CUSTOMER_ITEMS, PON_OFFER_COMMITMENTS — line type, customer item, and commitment references.
Downstream, the imported content is written by Order Import into OE_ORDER_HEADERS_ALL and OE_ORDER_LINES_ALL; those tables, not OE_LINES_IFACE_ALL, are the permanent order repository.
-
Table: OE_LINES_IFACE_ALL
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_LINES_IFACE_ALL, object_name:OE_LINES_IFACE_ALL, status:VALID, product: ONT - Order Management , description: This is a multi-org table for sales order lines open interface. , implementation_dba_data: ONT.OE_LINES_IFACE_ALL ,
-
Table: OE_LINES_IFACE_ALL
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_LINES_IFACE_ALL, object_name:OE_LINES_IFACE_ALL, status:VALID, product: ONT - Order Management , description: This is a multi-org table for sales order lines open interface. , implementation_dba_data: ONT.OE_LINES_IFACE_ALL ,
-
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: 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: OE_PRINT_CUST_ADDRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRINT_CUST_ADDRESS_V, object_name:OE_PRINT_CUST_ADDRESS_V, status:VALID, product: ONT - Order Management , description: This view is used to print the Bill-To, Ship-To and Deliver-To address of Customers from the Blanket Sales Agreement lines. , implementation_dba_data: APPS.OE_PRINT_CUST_ADDRESS_V ,
-
View: OE_PRINT_CUST_ADDRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRINT_CUST_ADDRESS_V, object_name:OE_PRINT_CUST_ADDRESS_V, status:VALID, product: ONT - Order Management , description: This view is used to print the Bill-To, Ship-To and Deliver-To address of Customers from the Blanket Sales Agreement lines. , implementation_dba_data: APPS.OE_PRINT_CUST_ADDRESS_V ,
-
Table: OE_HEADERS_IFACE_ALL
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_HEADERS_IFACE_ALL, object_name:OE_HEADERS_IFACE_ALL, status:VALID, product: ONT - Order Management , description: This is a multi-org table for sales order headers open interface. , implementation_dba_data: ONT.OE_HEADERS_IFACE_ALL ,
-
View: OE_CUSTOMER_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_ADDRESSES_V, object_name:OE_CUSTOMER_ADDRESSES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_ADDRESSES_V ,
-
Table: OE_HEADERS_IFACE_ALL
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_HEADERS_IFACE_ALL, object_name:OE_HEADERS_IFACE_ALL, status:VALID, product: ONT - Order Management , description: This is a multi-org table for sales order headers open interface. , implementation_dba_data: ONT.OE_HEADERS_IFACE_ALL ,
-
View: OE_CUSTOMER_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_ADDRESSES_V, object_name:OE_CUSTOMER_ADDRESSES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_ADDRESSES_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_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_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_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: 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_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ITEMS_V, object_name:OE_ITEMS_V, status:VALID, product: ONT - Order Management , description: This view is union of inventory items, customer items and generic items. , implementation_dba_data: APPS.OE_ITEMS_V ,
-
View: OE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ITEMS_V, object_name:OE_ITEMS_V, status:VALID, product: ONT - Order Management , description: This view is union of inventory items, customer items and generic items. , implementation_dba_data: APPS.OE_ITEMS_V ,
-
View: OEFV_HEADER_END_CUSTOMER
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_HEADER_END_CUSTOMER, object_name:OEFV_HEADER_END_CUSTOMER, status:VALID, product: ONT - Order Management , description: Full BIS Business View for End Customer Information , implementation_dba_data: APPS.OEFV_HEADER_END_CUSTOMER ,
-
View: OEFV_LINE_END_CUSTOMER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_LINE_END_CUSTOMER, object_name:OEFV_LINE_END_CUSTOMER, status:VALID, product: ONT - Order Management , description: Full BIS Business View for End Customer Information , implementation_dba_data: APPS.OEFV_LINE_END_CUSTOMER ,
-
View: OEFV_LINE_END_CUSTOMER
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_LINE_END_CUSTOMER, object_name:OEFV_LINE_END_CUSTOMER, status:VALID, product: ONT - Order Management , description: Full BIS Business View for End Customer Information , implementation_dba_data: APPS.OEFV_LINE_END_CUSTOMER ,
-
View: OE_BLANKET_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_HIST_V, object_name:OE_BLANKET_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA line history information, and it is udes in BSA version comparison UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_HIST_V ,
-
View: OE_BLANKET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_V, object_name:OE_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , description: This view is used to get the BSA lines information, used in BSA entry UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_V ,
-
View: OEFV_HEADER_END_CUSTOMER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_HEADER_END_CUSTOMER, object_name:OEFV_HEADER_END_CUSTOMER, status:VALID, product: ONT - Order Management , description: Full BIS Business View for End Customer Information , implementation_dba_data: APPS.OEFV_HEADER_END_CUSTOMER ,
-
View: OE_BLANKET_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_HIST_V, object_name:OE_BLANKET_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA line history information, and it is udes in BSA version comparison UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_HIST_V ,
-
View: OE_BLANKET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_V, object_name:OE_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , description: This view is used to get the BSA lines information, used in BSA entry UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_V ,
-
View: OE_DELIVER_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_DELIVER_TO_ORGS_V, object_name:OE_DELIVER_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: This view is used to get and validate the delivery to organizations. , implementation_dba_data: APPS.OE_DELIVER_TO_ORGS_V ,
-
View: OE_DELIVER_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_DELIVER_TO_ORGS_V, object_name:OE_DELIVER_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: This view is used to get and validate the delivery to organizations. , implementation_dba_data: APPS.OE_DELIVER_TO_ORGS_V ,
-
View: OE_SHIP_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SHIP_TO_ORGS_V, object_name:OE_SHIP_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: Ship To Organizations. , implementation_dba_data: APPS.OE_SHIP_TO_ORGS_V ,
-
View: OE_INVOICE_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_INVOICE_TO_ORGS_V, object_name:OE_INVOICE_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: Bill to organization , implementation_dba_data: APPS.OE_INVOICE_TO_ORGS_V ,
-
View: OE_INVOICE_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_INVOICE_TO_ORGS_V, object_name:OE_INVOICE_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: Bill to organization , implementation_dba_data: APPS.OE_INVOICE_TO_ORGS_V ,
-
View: OE_SHIP_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SHIP_TO_ORGS_V, object_name:OE_SHIP_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: Ship To Organizations. , implementation_dba_data: APPS.OE_SHIP_TO_ORGS_V ,
-
View: OE_RETURN_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RETURN_ITEMS_V, object_name:OE_RETURN_ITEMS_V, status:VALID, product: ONT - Order Management , description: Added a view for return items LOV. , implementation_dba_data: APPS.OE_RETURN_ITEMS_V ,
-
View: OE_RETURN_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RETURN_ITEMS_V, object_name:OE_RETURN_ITEMS_V, status:VALID, product: ONT - Order Management , description: Added a view for return items LOV. , implementation_dba_data: APPS.OE_RETURN_ITEMS_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_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: 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: 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: 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: 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: 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_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_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: View for Order Lines used in the Sales Order form. , implementation_dba_data: APPS.OE_ORDER_LINES_V ,
-
View: OE_ORDER_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_HIST_V, object_name:OE_ORDER_LINES_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_HIST_V ,
-
View: OE_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: View for Order Lines used in the Sales Order form. , implementation_dba_data: APPS.OE_ORDER_LINES_V ,
-
View: OE_ORDER_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_HIST_V, object_name:OE_ORDER_LINES_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_HIST_V ,
-
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: 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: 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 ,