Search Results aso_quote_related_objects
Overview
The ASO_QUOTE_RELATED_OBJECTS table is a core data structure within the Oracle E-Business Suite Advanced Sales Order Capture (ASO) module, present in both releases 12.1.1 and 12.2.2. It functions as a central relationship registry, establishing and storing explicit links between a sales quote (or an individual quote line) and various other entities across the application schema. Its primary role is to enable complex sales processes by tracking associations between quotes and objects such as sales leads, opportunities, and marketing campaigns. This relational mapping is critical for maintaining data integrity, supporting traceability from initial lead generation through to a formal quote, and enabling comprehensive sales analytics.
Key Information Stored
The table's design centers on linking two primary objects and classifying their relationship. The key columns include RELATED_OBJECT_ID, which serves as the primary key for each relationship record. The QUOTE_OBJECT_ID column holds the identifier for the related quote header or quote line, forming foreign key relationships to ASO_QUOTE_HEADERS_ALL and ASO_QUOTE_LINES_ALL. The OBJECT_ID column stores the identifier for the related external entity, such as a sales lead or opportunity. Crucially, the table contains columns that define the relationship type (e.g., indicating if a quote was generated from a lead) and specify the object type for both the quote and the related entity, allowing the application to correctly resolve the references to their respective base tables.
Common Use Cases and Queries
A primary use case is tracing the provenance of a quote back to its originating sales lead or opportunity for reporting and process analysis. Support personnel may query this table to understand the full context of a customer interaction when managing a quote. Common reporting needs include analyzing conversion rates from leads to quotes or identifying all quotes associated with a specific marketing campaign. A typical SQL pattern involves joining this table to both quote and lead tables:
- SELECT q.quote_number, l.lead_number FROM aso_quote_headers_all q, as_leads_all l, aso_quote_related_objects r WHERE r.quote_object_id = q.quote_header_id AND r.object_id = l.lead_id AND r.object_type = 'LEAD';
Data integrity checks and audit trails also rely on this table to ensure relationships are properly maintained when objects are updated or purged.
Related Objects
ASO_QUOTE_RELATED_OBJECTS is a nexus table with dependencies on several key transactional entities. As per the provided metadata, its primary foreign key relationships are with ASO_QUOTE_HEADERS_ALL and ASO_QUOTE_LINES_ALL via the QUOTE_OBJECT_ID column. Furthermore, it maintains relationships with objects in the Sales Lead Management module, specifically linking to AS_SALES_LEADS, AS_SALES_LEAD_LINES, AS_LEADS_ALL, and AS_LEAD_LINES_ALL through the OBJECT_ID column. This table is often accessed by standard Oracle APIs and user interfaces within the Order Capture flow. Reports and integrations that require a unified view of the sales pipeline will typically join through this table to connect quote data with upstream marketing and sales activities.
-
Table: ASO_QUOTE_RELATED_OBJECTS
12.1.1
owner:ASO, object_type:TABLE, fnd_design_data:ASO.ASO_QUOTE_RELATED_OBJECTS, object_name:ASO_QUOTE_RELATED_OBJECTS, status:VALID, product: ASO - Order Capture , description: ASO_QUOTE_RELATED_OBJECTS stores the relationship between a quote or a quote line to any entity in the schema and records the type of relationship. , implementation_dba_data: ASO.ASO_QUOTE_RELATED_OBJECTS ,
-
Table: ASO_QUOTE_RELATED_OBJECTS
12.2.2
owner:ASO, object_type:TABLE, fnd_design_data:ASO.ASO_QUOTE_RELATED_OBJECTS, object_name:ASO_QUOTE_RELATED_OBJECTS, status:VALID, product: ASO - Order Capture , description: ASO_QUOTE_RELATED_OBJECTS stores the relationship between a quote or a quote line to any entity in the schema and records the type of relationship. , implementation_dba_data: ASO.ASO_QUOTE_RELATED_OBJECTS ,
-
Lookup Type: ASO_QUOTE_RELATED_OBJECTS
12.2.2
product: ASO - Order Capture , meaning: ASO Quote Related Objects , description: OBSOLETED LOOKUP - Seeded lookup data required for data migration in Sales ,
-
Lookup Type: ASO_QUOTE_RELATED_OBJECTS
12.1.1
product: ASO - Order Capture , meaning: ASO Quote Related Objects , description: OBSOLETED LOOKUP - Seeded lookup data required for data migration in Sales ,
-
View: ASO_QUOTE_RELATED_OBJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_RELATED_OBJECTS_V, object_name:ASO_QUOTE_RELATED_OBJECTS_V, status:VALID, product: ASO - Order Capture , description: view based on aso_quote_related_objects , implementation_dba_data: APPS.ASO_QUOTE_RELATED_OBJECTS_V ,
-
View: ASO_QUOTE_RELATED_OBJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_RELATED_OBJECTS_V, object_name:ASO_QUOTE_RELATED_OBJECTS_V, status:VALID, product: ASO - Order Capture , description: view based on aso_quote_related_objects , implementation_dba_data: APPS.ASO_QUOTE_RELATED_OBJECTS_V ,
-
Table: ASO_QUOTE_LINES_ALL
12.2.2
owner:ASO, object_type:TABLE, fnd_design_data:ASO.ASO_QUOTE_LINES_ALL, object_name:ASO_QUOTE_LINES_ALL, status:VALID, product: ASO - Order Capture , description: ASO_QUOTE_LINES_ALL stores information for a typical quote or an order line , implementation_dba_data: ASO.ASO_QUOTE_LINES_ALL ,
-
Table: ASO_QUOTE_LINES_ALL
12.1.1
owner:ASO, object_type:TABLE, fnd_design_data:ASO.ASO_QUOTE_LINES_ALL, object_name:ASO_QUOTE_LINES_ALL, status:VALID, product: ASO - Order Capture , description: ASO_QUOTE_LINES_ALL stores information for a typical quote or an order line , implementation_dba_data: ASO.ASO_QUOTE_LINES_ALL ,
-
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 ,