Search Results lead_channel
Overview
APPS.AS_SALES_OPP_UWQ_V is an Oracle E-Business Suite view owned by the APPS schema and registered in FND Design Data as AS.AS_SALES_OPP_UWQ_V. It belongs to the Oracle Sales (AS) product family and exposes sales opportunity and lead data in a denormalized, presentation-ready form. The "_UWQ_" naming convention indicates that the view was constructed for use within a Universal Work Queue or comparable worklist-style inquiry context, while the "_V" suffix confirms its status as a database view rather than a table. The object is marked VALID and carries an Oracle Internal Use Only warning: Oracle Corporation does not support direct access to applications data through this object except from standard Oracle Applications programs. As a result, it should be treated as a read-only reporting and integration surface rather than a supported customization point.
The view consolidates lead identification, party (customer or prospect) information, sales stage, status, win probability, and channel attributes into a single rowset. This makes it suitable for lead funnel analysis, opportunity pipeline reporting, and dashboard-style inquiries that must join multiple AS and HZ tables without replicating that logic in every consumer.
Underlying Base Objects
The view is defined over the following documented objects in ETRM 12.2.2:
- AS_LEADS_ALL (synonym) — supplies the core lead record, including LEAD_ID, LEAD_NUMBER, and associated who-columns.
- AS_ACCESSES_ALL (view) — provides sales access and territory context used to constrain or attribute the lead.
- ASO_I_SALES_CHANNELS_V (view) — the source of sales channel information that feeds CHANNEL_CODE and SALES_CHANNEL.
- AS_STATUSES_B and AS_STATUSES_TL (synonyms) — provide STATUS_CODE and its translated STATUS_MEANING.
- AS_FORECAST_PROB_ALL_TL (synonym) — supplies forecast probability and PROBABILITY_MEANING.
- AS_SALES_STAGES_ALL_TL (synonym) — supplies SALES_STAGE_ID and SALES_STAGE_NAME.
- AS_LOOKUPS (view) — resolves lookup-coded values such as DECISION_TIMEFRAME_CODE.
- HZ_PARTIES (synonym) — provides PARTY_ID and PARTY_NAME for the customer or prospect.
- JTF_RS_RESOURCE_EXTNS (synonym) — provides RESOURCE_ID, RESOURCE_GROUP_ID, and RESOURCE_TYPE used for salesperson attribution.
Key Columns
The view exposes a mixture of identifiers, descriptive text, and measures. LEAD_ID is the unique identifier for the forecast, with LEAD_NUMBER carrying the system-generated sequence value from as_lead_number_s. PARTY_ID and PARTY_NAME identify the customer or prospect from HZ_PARTIES. SALES_STAGE_ID and SALES_STAGE_NAME describe the opportunity's position in the sales cycle, while STATUS_CODE and STATUS_MEANING indicate its current disposition. WIN_PROBABILITY and PROBABILITY_MEANING convey likely close percentage. Financial context is provided by TOTAL_AMOUNT, CUSTOMER_BUDGET, and CURRENCY_CODE (validated against fnd_currencies_vl). CHANNEL_CODE and SALES_CHANNEL capture the sales channel for the lead; both are validated against the 'LEAD_CHANNEL' lookup from order capture, and both must be considered when filtering or grouping by channel. DECISION_DATE, DECISION_TIMEFRAME_CODE, and DECISION_TIMEFRAME support time-based qualification, and PARENT_PROJECT attributes the lead to a project. Standard who-columns record audit information.
Common Use Cases and Queries
Typical consumers use the view for pipeline reports, lead aging analysis, and channel attribution summaries. The following query answers the specific "lead_channel" search by counting and measuring leads per sales channel:
- SELECT channel_code, sales_channel, COUNT(*) AS lead_count, SUM(total_amount) AS pipeline_amount FROM apps.as_sales_opp_uwq_v GROUP BY channel_code, sales_channel ORDER BY pipeline_amount DESC;
- Leads by sales stage and status: SELECT sales_stage_name, status_meaning, win_probability, COUNT(*) FROM apps.as_sales_opp_uwq_v GROUP BY sales_stage_name, status_meaning, win_probability;
- Salesperson workload: SELECT resource_id, COUNT(*) FROM apps.as_sales_opp_uwq_v GROUP BY resource_id;
- Upcoming decisions: SELECT lead_number, party_name, decision_date FROM apps.as_sales_opp_uwq_v WHERE decision_date >= TRUNC(SYSDATE) ORDER BY decision_date;
- Currency exposure: SELECT currency_code, SUM(total_amount) FROM apps.as_sales_opp_uwq_v GROUP BY currency_code;
Because the object is marked Oracle Internal Use Only, analytic queries should be directed to supported reporting tools or concurrent programs wherever possible, and any dependency on column semantics should be validated against the current ETRM release before production use.
-
Lookup Type: LEAD_CHANNEL
12.1.1
product: AS - Sales Foundation , meaning: LEAD_CHANNEL , description: Sales channel for a lead or opportunity ,
-
Lookup Type: LEAD_CHANNEL
12.2.2
product: AS - Sales Foundation , meaning: LEAD_CHANNEL , description: Sales channel for a lead or opportunity ,
-
VIEW: APPS.AS_SALES_OPP_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALES_OPP_UWQ_V, object_name:AS_SALES_OPP_UWQ_V, status:VALID,
-
VIEW: APPS.AS_SALES_OPP_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALES_OPP_UWQ_V, object_name:AS_SALES_OPP_UWQ_V, status:VALID,
-
View: AS_OPP_CONTACTS_V
12.1.1
product: AS - Sales Foundation , description: Opportunity contacts view , implementation_dba_data: Not implemented in this database ,
-
View: AS_OPP_CONTACTS_V
12.2.2
product: AS - Sales Foundation , description: Opportunity contacts view , implementation_dba_data: Not implemented in this database ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
TABLE: OSM.AS_LEADS_LOG
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_LEADS_LOG, object_name:AS_LEADS_LOG, status:VALID,
-
TABLE: OSM.AS_LEADS_LOG
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_LEADS_LOG, object_name:AS_LEADS_LOG, status:VALID,
-
VIEW: APPS.AS_LEADS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_LEADS, object_name:AS_LEADS, status:VALID,
-
VIEW: APPS.AS_LEADS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_LEADS, object_name:AS_LEADS, status:VALID,
-
TABLE: OSM.AS_LEADS_ALL
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_LEADS_ALL, object_name:AS_LEADS_ALL, status:VALID,
-
TABLE: OSM.AS_LEADS_ALL
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_LEADS_ALL, object_name:AS_LEADS_ALL, status:VALID,
-
eTRM - AS Tables and Views
12.2.2
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.1.1
description: - Retrofitted ,