Search Results ship_to_pty_site_id




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

IBE.IBE_ORD_ONECLICK_ALL is an Oracle E-Business Suite table that stores express checkout, or "one-click," settings for registered customers of the iStore (IBE) module. In Oracle EBS 12.1.1 and 12.2.2, IBE provides the Oracle iStore storefront application, and this table persists the preferences that allow a recognized, logged-in customer to bypass repetitive entry of shipping, billing, and payment information during order submission. Each row represents a stored express-checkout configuration tied to a specific customer account and party, scoped to a given operating unit through ORG_ID.

From a data-modeling perspective, the mined Data Vault classification for this object is link. This heuristic reflects the table's role as an associative entity that connects a party, a customer account, and party sites (bill-to and ship-to) rather than serving as a standalone hub of business keys or a descriptive satellite. The link classification is a modeling suggestion derived from the foreign-key structure, not a formally declared Data Vault design.

Key Information Stored

The table is owned by the IBE schema and contains 36 documented columns. The most significant are summarized below.

Common Use Cases and Queries

Application logic and reporting typically retrieve express-checkout settings during storefront session initialization and order submission, ensuring the correct defaults are applied for the registered customer.

  • Retrieve a customer's one-click setting: SELECT * FROM IBE.IBE_ORD_ONECLICK_ALL WHERE CUST_ACCOUNT_ID = :cust_id AND PARTY_ID = :party_id AND ORG_ID = :org_id AND ENABLED_FLAG = 'Y';
  • List enabled express users by operating unit: filter on ENABLED_FLAG = 'Y' grouped by ORG_ID for adoption reporting.
  • Validate default sites and payment: join BILL_TO_PTY_SITE_ID, SHIP_TO_PTY_SITE_ID, and PAYMENT_ID to confirm referenced entities remain valid.
  • Audit changes: use LAST_UPDATED_BY and LAST_UPDATE_DATE to trace modifications to customer preferences.
  • DFF extraction: query ATTRIBUTE_CATEGORY and the ATTRIBUTE1–15 columns where custom checkout attributes are configured.

Related Objects

  • HZ_PARTIES — joined via PARTY_ID; identifies the owning party of the express setting.
  • HZ_CUST_ACCOUNTS — joined via CUST_ACCOUNT_ID; identifies the customer account.
  • HZ_PARTY_SITES — referenced twice, via BILL_TO_PTY_SITE_ID and SHIP_TO_PTY_SITE_ID, for default addresses.
  • FND_SECURITY_GROUPS — joined via SECURITY_GROUP_ID for security group scoping.
  • IBE_ORD_ONECLICK_PK / IBE_ORD_ONECLICK_U1 — the primary key constraint and the business-key unique index (CUST_ACCOUNT_ID, PARTY_ID, ORG_ID) that govern record uniqueness.