Search Results sales_stage_name
Overview
The AS_SALES_OPP_UWQ_V view is a reporting and integration object owned by the APPS schema within the Oracle E-Business Suite Sales Foundation (AS) product family. Its documented purpose is to support the Universal Work Queue (UWQ), the framework that surfaces actionable work items to sales users through a consolidated interface. The view presents a curated, denormalized projection of sales opportunity data, drawing together opportunity attributes, customer information, sales stage, status, forecast probability, resource assignments, and channel details into a single queryable structure.
Because it is a view rather than a table, it carries no independent storage; instead it derives its content dynamically from a set of base objects each time it is queried. Status is documented as VALID in the ETRM 12.2.2 metadata, confirming that the object is available and operational in both Oracle EBS 12.1.1 and 12.2.2 environments. A distinguishing characteristic is its reliance on USERENV('LANG') for translated columns, meaning the view returns language-specific labels based on the session language of the querying user.
Underlying Base Objects
The view is defined over ten documented base objects spanning opportunity, resource, access, and reference data:
- AS_LEADS_ALL — aliased as OPP, the primary source of opportunity records, supplying lead identity, amounts, stage, probability, and dates.
- AS_ACCESSES_ALL — aliased as ACC, providing the resource and sales group assignment linkage through SALESFORCE_ID and SALES_GROUP_ID.
- HZ_PARTIES — aliased as PARTY, resolving the customer party name from CUSTOMER_ID.
- AS_SALES_STAGES_ALL_TL — aliased as SS, supplying the translated sales stage name.
- AS_FORECAST_PROB_ALL_TL — aliased as FP, supplying the translated probability meaning.
- AS_STATUSES_B and AS_STATUSES_TL — aliased as STB and ST, supplying status code and translated status meaning.
- JTF_RS_RESOURCE_EXTNS — aliased as RES, resolving the resource category for resource type derivation.
- ASO_I_SALES_CHANNELS_V — supplying the sales channel description.
- AS_LOOKUPS — aliased as ASLUP, supplying the translated decision timeframe meaning via an outer join.
Joins are driven primarily by STATUS, CUSTOMER_ID, SALES_STAGE_ID, WIN_PROBABILITY, LEAD_ID, and CHANNEL_CODE. A notable filter is STB.OPP_OPEN_STATUS_FLAG = 'Y', which restricts the result set to open opportunities only.
Key Columns
- LEAD_ID — Primary identifier for the opportunity record.
- LEAD_NUMBER and DESCRIPTION — Human-readable opportunity reference and narrative.
- PROBABILITY_MEANING — The translated label for the win probability, derived from AS_FORECAST_PROB_ALL_TL. This is the column associated with the search term "probability_meaning" and converts the numeric WIN_PROBABILITY into a language-specific description.
- WIN_PROBABILITY — Numeric forecast probability value joining to the probability translation table.
- STATUS_CODE and STATUS_MEANING — Status identifier and its translated meaning.
- SALES_STAGE_ID and SALES_STAGE_NAME — Sales pipeline stage and its translated name.
- PARTY_ID and PARTY_NAME — Customer party identifier and name.
- RESOURCE_ID, RESOURCE_GROUP_ID, and RESOURCE_TYPE — Assigned resource, group, and derived type (RS_EMPLOYEE or RS_PARTNER).
- OBJECT_CODE — Constant value 'OPPORTUNITY', identifying the work item type.
- TOTAL_AMOUNT, CURRENCY_CODE, and CUSTOMER_BUDGET — Financial context.
- DECISION_DATE, CREATION_DATE, and DECISION_TIMEFRAME — Timing attributes.
- CHANNEL_CODE and SALES_CHANNEL — Sales channel reference and description.
Common Use Cases and Queries
The primary use case is populating the Universal Work Queue with open sales opportunities. Reporting scenarios include pipeline reviews, probability-weighted forecasting, and resource workload analysis. A representative query lists open opportunities with their probability and status labels:
SELECT lead_id, lead_number, party_name, sales_stage_name, status_meaning, probability_meaning, total_amount FROM as_sales_opp_uwq_v;SELECT resource_id, COUNT(*) opp_count, SUM(total_amount) pipeline_value FROM as_sales_opp_uwq_v GROUP BY resource_id;SELECT probability_meaning, SUM(total_amount) weighted_value FROM as_sales_opp_uwq_v GROUP BY probability_meaning ORDER BY probability_meaning;
Because translated columns depend on USERENV('LANG'), results vary by session language, and queries should be executed under an appropriately configured session to return expected labels.
-
View: 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, product: AS - Sales Foundation , description: This view is used for Universal Work Queue , implementation_dba_data: APPS.AS_SALES_OPP_UWQ_V ,
-
VIEW: APPS.AST_SALES_OPP_UWQ_V
12.2.2
-
View: AST_SALES_OPP_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_OPP_UWQ_V, object_name:AST_SALES_OPP_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_OPP_UWQ_V ,
-
VIEW: APPS.AST_SALES_OPP_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_OPP_UWQ_V, object_name:AST_SALES_OPP_UWQ_V, status:VALID,
-
View: AST_SALES_OPP_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_OPP_UWQ_V, object_name:AST_SALES_OPP_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALES_OPP_UWQ_V ,
-
View: 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, product: AS - Sales Foundation , description: This view is used for Universal Work Queue , implementation_dba_data: APPS.AS_SALES_OPP_UWQ_V ,
-
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.2.2
-
VIEW: APPS.AST_SALES_OPP_UWQ_V
12.1.1
-
VIEW: APPS.AST_SALES_OPP_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALES_OPP_UWQ_V, object_name:AST_SALES_OPP_UWQ_V, status:VALID,
-
View: AST_MYTEAM_SALESOPP_CODE_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESOPP_CODE_UWQ_V, object_name:AST_MYTEAM_SALESOPP_CODE_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_MYTEAM_SALESOPP_CODE_UWQ_V ,
-
View: AST_MYTEAM_SALESOPP_CODE_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESOPP_CODE_UWQ_V, object_name:AST_MYTEAM_SALESOPP_CODE_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_MYTEAM_SALESOPP_CODE_UWQ_V ,
-
View: CE_FORECAST_ROWS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_ROWS_V, object_name:CE_FORECAST_ROWS_V, status:VALID, product: CE - Cash Management , description: - Retrofitted , implementation_dba_data: APPS.CE_FORECAST_ROWS_V ,
-
VIEW: APPS.AS_SALES_OPP_UWQ_V
12.1.1
-
VIEW: APPS.AST_SALESOPP_NAME_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESOPP_NAME_UWQ_V, object_name:AST_SALESOPP_NAME_UWQ_V, status:VALID,
-
VIEW: APPS.AST_SALESOPP_CODE_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESOPP_CODE_UWQ_V, object_name:AST_SALESOPP_CODE_UWQ_V, status:VALID,
-
View: CE_FORECAST_ROWS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_ROWS_V, object_name:CE_FORECAST_ROWS_V, status:VALID, product: CE - Cash Management , description: - Retrofitted , implementation_dba_data: APPS.CE_FORECAST_ROWS_V ,
-
View: AST_MYTEAM_SALESOPP_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESOPP_UWQ_V, object_name:AST_MYTEAM_SALESOPP_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_MYTEAM_SALESOPP_UWQ_V ,
-
View: AST_SALESOPP_CODE_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESOPP_CODE_UWQ_V, object_name:AST_SALESOPP_CODE_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALESOPP_CODE_UWQ_V ,
-
View: AST_MYTEAM_SALESOPP_NAME_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESOPP_NAME_UWQ_V, object_name:AST_MYTEAM_SALESOPP_NAME_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_MYTEAM_SALESOPP_NAME_UWQ_V ,
-
View: AST_SALESOPP_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESOPP_UWQ_V, object_name:AST_SALESOPP_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALESOPP_UWQ_V ,
-
View: IEU_UWQ_OPP_V
12.2.2
product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: Not implemented in this database ,
-
View: IEU_UWQ_OPP_V
12.1.1
product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: Not implemented in this database ,
-
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: AST_MYTEAM_SALESOPP_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESOPP_UWQ_V, object_name:AST_MYTEAM_SALESOPP_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_MYTEAM_SALESOPP_UWQ_V ,
-
VIEW: APPS.AST_MYTEAM_SALESOPP_NAME_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESOPP_NAME_UWQ_V, object_name:AST_MYTEAM_SALESOPP_NAME_UWQ_V, status:VALID,
-
VIEW: APPS.AST_SALESOPP_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESOPP_UWQ_V, object_name:AST_SALESOPP_UWQ_V, status:VALID,
-
VIEW: APPS.AST_SALESOPP_NAME_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESOPP_NAME_UWQ_V, object_name:AST_SALESOPP_NAME_UWQ_V, status:VALID,
-
VIEW: APPS.AST_MYTEAM_SALESOPP_CODE_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESOPP_CODE_UWQ_V, object_name:AST_MYTEAM_SALESOPP_CODE_UWQ_V, status:VALID,
-
VIEW: APPS.AST_PLIST_OPP_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PLIST_OPP_UWQ_V, object_name:AST_PLIST_OPP_UWQ_V, status:VALID,
-
VIEW: APPS.AST_MYTEAM_SALESOPP_CODE_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESOPP_CODE_UWQ_V, object_name:AST_MYTEAM_SALESOPP_CODE_UWQ_V, status:VALID,
-
View: AST_MYTEAM_SALESOPP_NAME_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESOPP_NAME_UWQ_V, object_name:AST_MYTEAM_SALESOPP_NAME_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_MYTEAM_SALESOPP_NAME_UWQ_V ,
-
View: AST_SALESOPP_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESOPP_UWQ_V, object_name:AST_SALESOPP_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALESOPP_UWQ_V ,
-
View: AST_PLIST_OPP_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PLIST_OPP_UWQ_V, object_name:AST_PLIST_OPP_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_PLIST_OPP_UWQ_V ,
-
View: AST_SALESOPP_NAME_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESOPP_NAME_UWQ_V, object_name:AST_SALESOPP_NAME_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALESOPP_NAME_UWQ_V ,
-
View: AST_PLIST_OPP_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PLIST_OPP_UWQ_V, object_name:AST_PLIST_OPP_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_PLIST_OPP_UWQ_V ,
-
View: AST_SALESOPP_CODE_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESOPP_CODE_UWQ_V, object_name:AST_SALESOPP_CODE_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALESOPP_CODE_UWQ_V ,
-
VIEW: APPS.AST_MYTEAM_SALESOPP_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESOPP_UWQ_V, object_name:AST_MYTEAM_SALESOPP_UWQ_V, status:VALID,
-
VIEW: APPS.AST_MYTEAM_SALESOPP_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESOPP_UWQ_V, object_name:AST_MYTEAM_SALESOPP_UWQ_V, status:VALID,
-
VIEW: APPS.AST_MYTEAM_SALESOPP_NAME_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_MYTEAM_SALESOPP_NAME_UWQ_V, object_name:AST_MYTEAM_SALESOPP_NAME_UWQ_V, status:VALID,
-
VIEW: APPS.AST_SALESOPP_CODE_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESOPP_CODE_UWQ_V, object_name:AST_SALESOPP_CODE_UWQ_V, status:VALID,
-
VIEW: APPS.AST_SALESOPP_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESOPP_UWQ_V, object_name:AST_SALESOPP_UWQ_V, status:VALID,
-
VIEW: APPS.AST_PLIST_OPP_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_PLIST_OPP_UWQ_V, object_name:AST_PLIST_OPP_UWQ_V, status:VALID,
-
VIEW: APPS.AST_SALESOPP_UWQ_V
12.1.1
-
View: AST_SALESOPP_NAME_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SALESOPP_NAME_UWQ_V, object_name:AST_SALESOPP_NAME_UWQ_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SALESOPP_NAME_UWQ_V ,
-
VIEW: APPS.AST_MYTEAM_SALESOPP_UWQ_V
12.2.2
-
VIEW: APPS.AST_MYTEAM_SALESOPP_CODE_UWQ_V
12.2.2
-
VIEW: APPS.AST_SALESOPP_UWQ_V
12.2.2
-
VIEW: APPS.CE_FORECAST_ROWS_V
12.1.1
-
VIEW: APPS.AST_MYTEAM_SALESOPP_CODE_UWQ_V
12.1.1