Search Results ibe_sh_quote_access
Overview
The IBE_SH_QUOTE_ACCESS table is owned by the IBE schema and belongs to the iStore (IBE) module of Oracle E-Business Suite. It stores shopping cart (quote) access details, functioning as the repository that records which parties, customer accounts, and contact points are permitted to view or modify a given iStore quote. In iStore, a "quote" is the persistent representation of a shopping cart, and access to that cart may be shared beyond its original creator—for example with other members of a buying organization, with delegated buyers, or with contacts registered against the customer account. This table captures those sharing relationships and the privilege level granted to each sharee.
In data-vault modeling terms—using the heuristic classification mined from the foreign-key structure—this object is best characterized as a link table. It resolves a many-to-many relationship between quote headers (ASO_QUOTE_HEADERS_ALL) and the parties, accounts, and contact points that are granted access to them. The surrogate primary key QUOTE_SHAREE_ID is generated per sharee row, while the business-key candidate is captured by the unique index IBE_SH_QUOTE_ACCESS_UK1 on QUOTE_HEADER_ID combined with QUOTE_SHAREE_NUMBER.
Key Information Stored
The table contains 21 documented columns. The most operationally significant are:
- QUOTE_SHAREE_ID — Surrogate primary key (
IBE_SH_QUOTE_ACCESS_PK) uniquely identifying each access grant. - QUOTE_HEADER_ID — Foreign key to
ASO_QUOTE_HEADERS_ALL; the quote (cart) being shared. - QUOTE_SHAREE_NUMBER — Business-key attribute differentiating multiple sharees on the same quote; the alternate unique key
IBE_SH_QUOTE_ACCESS_UK1spansQUOTE_HEADER_IDand this column. - PARTY_ID — Foreign key to
HZ_PARTIES; the party granted access. - CUST_ACCOUNT_ID — Foreign key to
HZ_CUST_ACCOUNTS; the customer account associated with the sharee. - CONTACT_POINT_ID — Foreign key to
HZ_CONTACT_POINTS; the e-mail or contact mechanism used for notifications. - UPDATE_PRIVILEGE_TYPE_CODE — Indicates the level of access (for example read-only versus update).
- START_DATE_ACTIVE / END_DATE_ACTIVE — Effective dating that bounds the period during which the share remains active.
- RECIPIENT_NAME — Display name of the recipient of the shared cart.
- SECURITY_GROUP_ID — Foreign key to
FND_SECURITY_GROUPS; supports multi-org/multi-tenant data isolation. - OBJECT_VERSION_NUMBER — Optimistic-locking column used by the ORM framework.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard WHO audit columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — Concurrent-program context columns populated when rows are created by batch processes.
Common Use Cases and Queries
Typical reporting and troubleshooting scenarios include identifying all parties with access to a specific cart, auditing who was granted update privileges, and determining whether a share has expired based on the active date range.
- List sharees for a quote:
SELECT QUOTE_SHAREE_ID, PARTY_ID, CUST_ACCOUNT_ID, UPDATE_PRIVILEGE_TYPE_CODE FROM IBE_SH_QUOTE_ACCESS WHERE QUOTE_HEADER_ID = :p_quote_header_id; - Currently active shares: filter on
SYSDATE BETWEEN START_DATE_ACTIVE AND NVL(END_DATE_ACTIVE, SYSDATE). - Reconcile to quote headers: join
QUOTE_HEADER_IDtoASO_QUOTE_HEADERS_ALLto report cart status alongside its sharees. - Party enrichment: join
PARTY_IDtoHZ_PARTIESfor sharee names andCUST_ACCOUNT_IDtoHZ_CUST_ACCOUNTSfor account context.
Related Objects
- ASO_QUOTE_HEADERS_ALL — joined on
QUOTE_HEADER_ID; the parent quote/cart. - HZ_PARTIES — joined on
PARTY_ID; sharee identity. - HZ_CUST_ACCOUNTS — joined on
CUST_ACCOUNT_ID; customer account context. - HZ_CONTACT_POINTS — joined on
CONTACT_POINT_ID; notification contact mechanism. - FND_SECURITY_GROUPS — joined on
SECURITY_GROUP_ID; data-security grouping. - ASO_QUOTE_LINES_ALL — sibling detail table whose visibility depends on quote-level access.
- IBE_SH_QUOTE_ACCESS_PK / _UK1 indexes — enforce primary and alternate uniqueness used by iStore cart-sharing logic.
-
Table: IBE_SH_QUOTE_ACCESS
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_SH_QUOTE_ACCESS, object_name:IBE_SH_QUOTE_ACCESS, status:VALID, product: IBE - iStore , description: Stores shopping cart (quote) access details , implementation_dba_data: IBE.IBE_SH_QUOTE_ACCESS ,
-
Table: IBE_SH_QUOTE_ACCESS
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_SH_QUOTE_ACCESS, object_name:IBE_SH_QUOTE_ACCESS, status:VALID, product: IBE - iStore , description: Stores shopping cart (quote) access details , implementation_dba_data: IBE.IBE_SH_QUOTE_ACCESS ,
-
View: IBE_SH_QUOTE_ACCESS_EMAIL_V
12.2.2
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
VIEW: IBE.IBE_SH_QUOTE_ACCESS#
12.2.2
owner:IBE, object_type:VIEW, object_name:IBE_SH_QUOTE_ACCESS#, status:VALID,
-
View: IBE_SH_QUOTE_ACCESS_EMAIL_V
12.1.1
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IBE_SH_QUOTE_ACCESS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IBE_SH_QUOTE_ACCESS, status:VALID,
-
SYNONYM: APPS.IBE_SH_QUOTE_ACCESS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IBE_SH_QUOTE_ACCESS, status:VALID,
-
VIEW: IBE.IBE_SH_QUOTE_ACCESS#
12.2.2
-
APPS.IBE_MERGE_PVT SQL Statements
12.1.1
-
APPS.IBE_QUOTE_SAVESHARE_V2_PVT SQL Statements
12.2.2
-
APPS.IBE_MERGE_PVT SQL Statements
12.2.2
-
APPS.IBE_QUOTE_SAVESHARE_V2_PVT SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.IBE_SH_QUOTE_ACCESS_PKG SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
Lookup Type: OWNER_TABLE_NAME
12.1.1
product: AR - Receivables , meaning: Owner Table Name , description: Owner Table Name ,
-
PACKAGE BODY: APPS.IBE_SH_QUOTE_ACCESS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_SH_QUOTE_ACCESS_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
View: IBE_SH_QUOTE_ACCESS_V
12.1.1
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IBE_SH_QUOTE_ACCESS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_SH_QUOTE_ACCESS_PKG, status:VALID,
-
APPS.IBE_SH_QUOTE_ACCESS_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IBE_MERGE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_MERGE_PVT, status:VALID,
-
TABLE: IBE.IBE_SH_QUOTE_ACCESS
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_SH_QUOTE_ACCESS, object_name:IBE_SH_QUOTE_ACCESS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
View: IBE_SH_QUOTE_ACCESS_V
12.2.2
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
Lookup Type: OWNER_TABLE_NAME
12.2.2
product: AR - Receivables , meaning: Owner Table Name , description: Owner Table Name ,
-
TABLE: IBE.IBE_SH_QUOTE_ACCESS
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_SH_QUOTE_ACCESS, object_name:IBE_SH_QUOTE_ACCESS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IBE_MERGE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_MERGE_PVT, status:VALID,
-
Table: HZ_CONTACT_POINTS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CONTACT_POINTS, object_name:HZ_CONTACT_POINTS, status:VALID, product: AR - Receivables , description: Electronic methods of communicating with parties , implementation_dba_data: AR.HZ_CONTACT_POINTS ,
-
PACKAGE BODY: APPS.IBE_MERGE_PVT
12.1.1
-
APPS.IBE_QUOTE_SAVESHARE_PVT SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
Table: HZ_CONTACT_POINTS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CONTACT_POINTS, object_name:HZ_CONTACT_POINTS, status:VALID, product: AR - Receivables , description: Electronic methods of communicating with parties , implementation_dba_data: AR.HZ_CONTACT_POINTS ,
-
PACKAGE BODY: APPS.IBE_QUOTE_MISC_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_QUOTE_MISC_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_QUOTE_SAVESHARE_V2_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_QUOTE_SAVESHARE_V2_PVT, status:VALID,
-
Table: ASO_QUOTE_HEADERS_ALL
12.2.2
owner:ASO, object_type:TABLE, fnd_design_data:ASO.ASO_QUOTE_HEADERS_ALL, object_name:ASO_QUOTE_HEADERS_ALL, status:VALID, product: ASO - Order Capture , description: This table holds header level Order Capture quotation data. , implementation_dba_data: ASO.ASO_QUOTE_HEADERS_ALL ,
-
Table: ASO_QUOTE_HEADERS_ALL
12.1.1
owner:ASO, object_type:TABLE, fnd_design_data:ASO.ASO_QUOTE_HEADERS_ALL, object_name:ASO_QUOTE_HEADERS_ALL, status:VALID, product: ASO - Order Capture , description: ASO_QUOTE_HEADERS holds Order Capture quotation information. it has the header data of a quote. For each quote header, there can zero or many quote lines attached to it. , implementation_dba_data: ASO.ASO_QUOTE_HEADERS_ALL ,
-
APPS.IBE_QUOTE_SAVESHARE_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IBE_SH_QUOTE_ACCESS_PKG
12.1.1
-
PACKAGE BODY: APPS.IBE_QUOTE_SAVESHARE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_QUOTE_SAVESHARE_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_QUOTE_SAVESHARE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_QUOTE_SAVESHARE_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_QUOTE_SAVESHARE_V2_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_QUOTE_SAVESHARE_V2_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_MERGE_PVT
12.2.2
-
PACKAGE BODY: APPS.IBE_QUOTE_MISC_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_QUOTE_MISC_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_SH_QUOTE_ACCESS_PKG
12.2.2