Search Results ibe_ord_oneclick
Overview
IBE_ORD_ONECLICK is an Oracle iStore (IBE) application table that stores express checkout, or "one-click," configuration settings for registered customers. In the Oracle E-Business Suite 12.1.1 and 12.2.2 environments, iStore provides a self-service storefront where registered business customers authenticate and place orders against their negotiated pricing and payment terms. The one-click feature allows a returning registered user to bypass the standard multi-step checkout flow by pre-configuring default shipping, billing, and payment preferences. This table persists those defaults on a per-customer basis.
From a Data Vault modeling perspective, the metadata classifies this object heuristically as a link. This classification is consistent with the table's structure: it does not model a single business entity but rather records an association between a party (customer), their bill-to and ship-to addresses, a customer account, and a payment instrument. The link connects multiple hub-like business keys (party, customer account, party sites, bank account) into a single convenience record that the iStore checkout engine can resolve at runtime.
Key Information Stored
The primary key is defined by the constraint IBE_ORD_ONECLICK_PK, which is based on the surrogate column ORD_ONECLICK_ID. This surrogate identifier is the only guaranteed-unique column documented; no alternate unique index or natural business key is identified in the metadata, meaning uniqueness of a customer's one-click configuration is enforced through the combination of foreign key values rather than a single business column.
The most significant columns are the foreign key attributes that define the express checkout profile:
- PARTY_ID — references HZ_PARTIES; identifies the registered customer (party) who owns the one-click settings.
- CUST_ACCOUNT_ID — references HZ_CUST_ACCOUNTS; identifies the customer account under which orders are placed.
- BILL_TO_PTY_SITE_ID — references HZ_PARTY_SITES; the default bill-to address site used during express checkout.
- SHIP_TO_PTY_SITE_ID — references HZ_PARTY_SITES; the default ship-to address site.
- PAYMENT_ID — references AP_BANK_ACCOUNTS_ALL; the stored payment instrument (bank account) applied to one-click orders.
Together these columns capture the complete preference set required to construct an order without user re-entry, tying the identity of the buyer to their addresses and payment source.
Common Use Cases and Queries
The principal use case is the iStore express checkout flow, which reads this table when a registered user selects one-click ordering. Reporting and support scenarios typically join the profile back to the TCA (Trading Community Architecture) model. A representative query retrieving a customer's one-click defaults:
- SELECT o.ord_oneclick_id, o.party_id, o.cust_account_id, o.bill_to_pty_site_id, o.ship_to_pty_site_id, o.payment_id FROM ibe_ord_oneclick o WHERE o.party_id = :p_party_id;
- Join to HZ_CUST_ACCOUNTS on CUST_ACCOUNT_ID to resolve the account number, and to HZ_PARTY_SITES for validated addresses.
- Join to AP_BANK_ACCOUNTS_ALL on PAYMENT_ID to report the stored payment instrument for audit or reconciliation.
Analysts commonly use such queries to verify that storefront defaults are correctly configured, to troubleshoot failed express checkouts, and to audit which customers have stored payment preferences.
Related Objects
The relationships below are documented foreign keys from IBE_ORD_ONECLICK:
- HZ_PARTIES — joined via PARTY_ID; the registered customer.
- HZ_CUST_ACCOUNTS — joined via CUST_ACCOUNT_ID; the ordering customer account.
- HZ_PARTY_SITES — joined via BILL_TO_PTY_SITE_ID and SHIP_TO_PTY_SITE_ID; default addresses for both roles.
- AP_BANK_ACCOUNTS_ALL — joined via PAYMENT_ID; the stored payment bank account.
These satellite and hub-backed objects supply the master data consumed by the iStore checkout engine. Note that the ETRM metadata records this table as "Not implemented in this database," indicating it may not exist in every 12.1.1/12.2.2 instance and its presence depends on whether iStore one-click functionality was deployed.
-
Table: IBE_ORD_ONECLICK
12.1.1
product: IBE - iStore , description: Express checkout settings for registered customers , implementation_dba_data: Not implemented in this database ,
-
Table: IBE_ORD_ONECLICK
12.2.2
product: IBE - iStore , description: Express checkout settings for registered customers , implementation_dba_data: Not implemented in this database ,
-
APPS.IBE_ORD_ONECLICK_PVT SQL Statements
12.1.1
-
APPS.IBE_ORD_ONECLICK_PVT SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
Lookup Type: OWNER_TABLE_NAME
12.1.1
product: AR - Receivables , meaning: Owner Table Name , description: Owner Table Name ,
-
SYNONYM: APPS.IBE_ORD_ONECLICK
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IBE_ORD_ONECLICK, status:VALID,
-
SYNONYM: APPS.IBE_ORD_ONECLICK
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IBE_ORD_ONECLICK, status:VALID,
-
PACKAGE BODY: APPS.IBE_ONECLK_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_ONECLK_PVT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
Lookup Type: OWNER_TABLE_NAME
12.2.2
product: AR - Receivables , meaning: Owner Table Name , description: Owner Table Name ,
-
APPS.IBE_ONECLK_PVT SQL Statements
12.1.1
-
APPS.IBE_ONECLK_PVT SQL Statements
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IBE_ONECLK_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_ONECLK_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_PAYMENT_INT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_PAYMENT_INT_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_PAYMENT_INT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_PAYMENT_INT_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_ORD_ONECLICK_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_ORD_ONECLICK_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_ORD_ONECLICK_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_ORD_ONECLICK_PVT, status:VALID,
-
Table: HZ_PARTY_SITES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTY_SITES, object_name:HZ_PARTY_SITES, status:VALID, product: AR - Receivables , description: Links party to physical locations , implementation_dba_data: AR.HZ_PARTY_SITES ,
-
Table: HZ_PARTY_SITES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTY_SITES, object_name:HZ_PARTY_SITES, status:VALID, product: AR - Receivables , description: Links party to physical locations , implementation_dba_data: AR.HZ_PARTY_SITES ,
-
Table: AP_BANK_ACCOUNTS_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_BANK_ACCOUNTS_ALL, object_name:AP_BANK_ACCOUNTS_ALL, status:VALID, product: AP - Payables , implementation_dba_data: AP.AP_BANK_ACCOUNTS_ALL ,
-
VIEW: IBE.IBE_ORD_ONECLICK_ALL#
12.2.2
owner:IBE, object_type:VIEW, object_name:IBE_ORD_ONECLICK_ALL#, status:VALID,
-
Table: AP_BANK_ACCOUNTS_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_BANK_ACCOUNTS_ALL, object_name:AP_BANK_ACCOUNTS_ALL, status:VALID, product: AP - Payables , implementation_dba_data: AP.AP_BANK_ACCOUNTS_ALL ,
-
PACKAGE: APPS.IBE_ADDRESS_V2PVT
12.2.2
-
PACKAGE: APPS.IBE_ADDRESS_V2PVT
12.1.1
-
TABLE: IBE.IBE_ORD_ONECLICK_ALL
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_ORD_ONECLICK_ALL, object_name:IBE_ORD_ONECLICK_ALL, status:VALID,
-
Table: HZ_CUST_ACCOUNTS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CUST_ACCOUNTS, object_name:HZ_CUST_ACCOUNTS, status:VALID, product: AR - Receivables , description: Stores information about customer accounts. , implementation_dba_data: AR.HZ_CUST_ACCOUNTS ,
-
Table: HZ_CUST_ACCOUNTS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CUST_ACCOUNTS, object_name:HZ_CUST_ACCOUNTS, status:VALID, product: AR - Receivables , description: Stores information about customer accounts. , implementation_dba_data: AR.HZ_CUST_ACCOUNTS ,
-
PACKAGE BODY: APPS.IBE_ORD_ONECLICK_PVT
12.2.2
-
PACKAGE: APPS.IBE_MERGE_PVT
12.2.2
-
APPS.IBE_PAYMENT_INT_PVT SQL Statements
12.1.1
-
APPS.IBE_PAYMENT_INT_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IBE_ORD_ONECLICK_PVT
12.1.1
-
PACKAGE: APPS.IBE_MERGE_PVT
12.1.1
-
APPS.IBE_PAYMENT_INT_PVT dependencies on IBE_ORD_ONECLICK
12.1.1
-
APPS.IBE_ORD_ONECLICK_PVT dependencies on IBE_ORD_ONECLICK
12.2.2
-
APPS.IBE_ONECLK_PVT dependencies on IBE_ORD_ONECLICK
12.1.1
-
APPS.IBE_ONECLK_PVT dependencies on IBE_ORD_ONECLICK
12.2.2
-
APPS.IBE_PAYMENT_INT_PVT dependencies on IBE_ORD_ONECLICK
12.2.2
-
APPS.IBE_ORD_ONECLICK_PVT dependencies on IBE_ORD_ONECLICK
12.1.1
-
PACKAGE BODY: APPS.IBE_ONECLK_PVT
12.1.1
-
PACKAGE BODY: APPS.IBE_ONECLK_PVT
12.2.2
-
Table: HZ_PARTIES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
Table: HZ_PARTIES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
APPS.IBE_ORD_ONECLICK_PVT dependencies on HZ_PARTIES
12.2.2
-
eTRM - IBE Tables and Views
12.1.1
description: This table stores information about supported Work Flow notifications in iStore. ,
-
APPS.IBE_ORD_ONECLICK_PVT dependencies on HZ_PARTIES
12.1.1
-
PACKAGE BODY: APPS.IBE_PAYMENT_INT_PVT
12.1.1