Search Results ast_lm_quotes_v
Overview
AST_LM_QUOTES_V is a reporting view owned by the APPS schema and delivered as part of the Oracle TeleSales (AST) product family in Oracle E-Business Suite 12.1.1 and 12.2.2. Its purpose is to present a denormalized, read-only projection of quote data originating from Oracle Quoting (ASO), enriched with customer, contact, sales representative, order, and operating unit attributes. Because quoting activities in TeleSales span multiple functional schemas, the view provides a single consolidated access point that shields report developers and integrators from the underlying join complexity. It is typically consumed for quote pipeline analysis, telesales agent dashboards, and outbound/inbound integration extracts that require quote header, status, expiration, and converted-order information in one record set. The view is marked VALID in the ETRM metadata, and because it is defined with outer joins against several reference tables, it does not enforce referential integrity on the quote header; orphaned or partially populated quote rows are still returned.
Underlying Base Objects
The view is defined over the following documented objects: ASO_QUOTE_HEADERS_ALL (synonym) as the driving table, OE_ORDER_HEADERS_ALL (synonym) for converted orders, ASO_QUOTE_STATUSES_VL (view) for status meaning and code, HZ_CUST_ACCOUNTS (synonym) for account number, HZ_PARTIES (synonym, aliased PARTY) for the bill-to party name, JTF_RS_SALESREPS (synonym) for the sales resource, HZ_RELATIONSHIPS (synonym) with HZ_PARTIES (aliased PART) to resolve the person contact linked to the organization, and HR_OPERATING_UNITS (view) for the operating unit name. ASO_QUOTE_HEADERS_ALL is joined to OE_ORDER_HEADERS_ALL, HZ_CUST_ACCOUNTS, HZ_PARTIES, and JTF_RS_SALESREPS using outer joins, so missing orders or accounts do not suppress quote rows. The join to HR_OPERATING_UNITS is an inner join on ORG_ID, meaning every returned row must resolve to a valid operating unit. A distinguishing filter restricts PARTY.STATUS to 'A' or 'I', excluding parties in other lifecycle states.
Key Columns
The SELECT list exposes the following documented columns:
- PARTY_NAME – bill-to party name from HZ_PARTIES.
- SALESREP_NAME – resource name from JTF_RS_SALESREPS.
- QUOTE_NAME, QUOTE_NUMBER, QUOTE_VERSION – quote header identifiers and versioning attributes.
- QUOTE_STATUS, QUOTE_STATUS_CODE – status meaning and code from ASO_QUOTE_STATUSES_VL.
- QUOTE_EXPIRATION_DATE – quote validity end date.
- ORDER_NUMBER, ORDERED_DATE – converted order reference, null when unconverted.
- ACCOUNT_NUMBER – customer account number from HZ_CUST_ACCOUNTS.
- QUOTE_HEADER_ID, CUST_ACCOUNT_ID, PARTY_ID – primary keys for joins back to base tables.
- ATTRIBUTE1 through ATTRIBUTE15 – the DFF context columns from the quote header.
- CONTACT_FIRST_NAME, CONTACT_LAST_NAME, CONTACT_NAME – resolved person contact derived through HZ_RELATIONSHIPS and HZ_PARTIES.
- QUOTE_TOTAL – NVL(QTE.TOTAL_QUOTE_PRICE, 0.0), defaulted to zero.
- CURRENCY_CODE, ORG_ID, OPERATING_UNIT – currency and operating unit context.
Common Use Cases and Queries
Typical usage includes open quote pipelines, quote-to-order conversion tracking, and per-operating-unit reporting.
- Active quote pipeline by salesrep:
SELECT SALESREP_NAME, QUOTE_NUMBER, QUOTE_TOTAL, QUOTE_EXPIRATION_DATE FROM APPS.AST_LM_QUOTES_V WHERE QUOTE_STATUS_CODE = 'OPEN';
- Conversion analysis comparing quoted versus ordered dates:
SELECT QUOTE_NUMBER, QUOTE_EXPIRATION_DATE, ORDER_NUMBER, ORDERED_DATE FROM APPS.AST_LM_QUOTES_V WHERE ORDER_NUMBER IS NOT NULL;
- Operating unit rollup:
SELECT OPERATING_UNIT, COUNT(*), SUM(QUOTE_TOTAL) FROM APPS.AST_LM_QUOTES_V GROUP BY OPERATING_UNIT;
Because of the DISTINCT clause in the view definition, aggregations are performed over already-distinct rows, which can affect counts when relationships produce duplicates. Reports should filter on ORG_ID for multi-org security.
-
View: AST_LM_QUOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_QUOTES_V, object_name:AST_LM_QUOTES_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_QUOTES_V ,
-
View: AST_LM_QUOTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_QUOTES_V, object_name:AST_LM_QUOTES_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_QUOTES_V ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.JTF_RS_SALESREPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_RS_SALESREPS, status:VALID,
-
VIEW: APPS.AST_LM_QUOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_QUOTES_V, object_name:AST_LM_QUOTES_V, status:VALID,
-
VIEW: APPS.AST_LM_QUOTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_QUOTES_V, object_name:AST_LM_QUOTES_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.ASO_QUOTE_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ASO_QUOTE_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.JTF_RS_SALESREPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_RS_SALESREPS, status:VALID,
-
SYNONYM: APPS.ASO_QUOTE_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ASO_QUOTE_HEADERS_ALL, status:VALID,
-
VIEW: APPS.ASO_QUOTE_STATUSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_STATUSES_VL, object_name:ASO_QUOTE_STATUSES_VL, status:VALID,
-
VIEW: APPS.ASO_QUOTE_STATUSES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_STATUSES_VL, object_name:ASO_QUOTE_STATUSES_VL, status:VALID,
-
VIEW: APPS.JTF_RS_RESOURCE_EXTNS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_RESOURCE_EXTNS_VL, object_name:JTF_RS_RESOURCE_EXTNS_VL, status:VALID,
-
VIEW: APPS.HR_OPERATING_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_OPERATING_UNITS, object_name:HR_OPERATING_UNITS, status:VALID,
-
SYNONYM: APPS.OE_ORDER_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_HEADERS_ALL, status:VALID,
-
VIEW: APPS.HR_OPERATING_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_OPERATING_UNITS, object_name:HR_OPERATING_UNITS, status:VALID,
-
SYNONYM: APPS.HZ_RELATIONSHIPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_RELATIONSHIPS, status:VALID,
-
SYNONYM: APPS.OE_ORDER_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.HZ_RELATIONSHIPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_RELATIONSHIPS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
eTRM - ASO Tables and Views
12.2.2
description: This tables is used to log messages during the migration in Order Capture. ,
-
eTRM - ASO Tables and Views
12.1.1
description: This tables is used to log messages during the migration in Order Capture. ,
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
eTRM - AST Tables and Views
12.2.2
description: All available web searches ,
-
eTRM - AST Tables and Views
12.1.1
description: All available web searches ,
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - ASO Tables and Views
12.1.1
description: This tables is used to log messages during the migration in Order Capture. ,
-
eTRM - ASO Tables and Views
12.2.2
description: This tables is used to log messages during the migration in Order Capture. ,
-
eTRM - AST Tables and Views
12.1.1
description: All available web searches ,
-
eTRM - AST Tables and Views
12.2.2
description: All available web searches ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,