Search Results currency_amount
Overview
ASF_OPP_TOP_MV is an APPS-owned materialized view registered as a table object in the Oracle E-Business Suite database, delivered under the ASF – Sales Online product family. It exposes opportunity and lead tracking information used by the Sales Online (Sales Foundation) reporting and dashboard layer, aggregating opportunity-level metrics such as revenue amounts, win/loss outcomes, pipeline status, and conversion details. The object is documented as VALID in the ETRM repository and contains 18 columns in the Oracle EBS 12.1.1 physical schema, a column count that carries forward to the 12.2.2 environment. Despite the _MV suffix, which normally denotes a materialized view, the object is catalogued as a TABLE type, reflecting how Oracle EBS registers snapshot segments and materialized view containers in the data dictionary.
From a Data Vault modeling perspective, the mined relationship metadata classifies ASF_OPP_TOP_MV as a standalone construct rather than a hub, link, or satellite. This heuristic reflects that the object behaves largely as a self-contained denormalized reporting structure carrying descriptive opportunity attributes and foreign-key references outward, without itself functioning as either a business-key hub or an associative link in a normalized warehouse model.
Key Information Stored
The most significant columns support opportunity analysis across several dimensions:
- LEAD_ID – The foreign-key reference to
AS_LEADS_ALL, linking each materialized row to its originating sales lead and serving as the primary business-key candidate for joining. - CUSTOMER_ID and CUSTOMER_NAME – Party identifiers and denormalized descriptive text for the account associated with the opportunity.
- PARTY_TYPE – Classifies the customer entity (for example, person versus organization) for segmentation.
- TOTAL_AMOUNT and CURRENCY_AMOUNT – The opportunity value metrics used in pipeline and forecast reporting.
- OPP_DESCRIPTION and SALES_STAGE – Textual opportunity detail and the current sales stage for funnel analysis.
- WIN_LOSS_INDICATOR, OPP_OPEN_STATUS_FLAG, and WIN_PROBABILITY – Outcome and probability fields underpinning win-rate, close-rate, and weighted-forecast calculations.
- DECISION_DATE – The anticipated or actual decision milestone for the opportunity.
- MANAGER_PERSON_ID and PARENT_RESOURCE_ID – Resource and hierarchy references supporting territory and roll-up reporting.
- CONVERSION_PERIOD_TYPE, CONVERSION_PERIOD_NAME, and TO_CURRENCY_CODE – Currency conversion context for normalized reporting amounts.
- STATUS – The record processing or lifecycle state.
No separate surrogate primary key column is documented in the ETRM extract; the identified foreign-key column LEAD_ID is the principal candidate for a business-key join back to AS_LEADS_ALL.
Common Use Cases and Queries
Typical usage centers on opportunity pipeline reporting, win/loss trend analysis, and currency-normalized revenue forecasting. A representative query pattern joining the object to its documented parent is:
SELECT m.LEAD_ID, m.CUSTOMER_NAME, m.TOTAL_AMOUNT, m.SALES_STAGE, m.WIN_PROBABILITY FROM APPS.ASF_OPP_TOP_MV m WHERE m.OPP_OPEN_STATUS_FLAG = 'Y';- Aggregating weighted forecast by stage:
SELECT SALES_STAGE, SUM(TOTAL_AMOUNT * WIN_PROBABILITY) FROM APPS.ASF_OPP_TOP_MV GROUP BY SALES_STAGE; - Joining to the lead source:
... FROM APPS.ASF_OPP_TOP_MV m, APPS.AS_LEADS_ALL l WHERE m.LEAD_ID = l.LEAD_ID;
Because it is a materialized container, refresh timing affects data latency, and reports should account for the underlying refresh schedule.
Related Objects
- AS_LEADS_ALL – The documented foreign-key parent referenced by
ASF_OPP_TOP_MV.LEAD_ID, holding the consolidated lead records. - AS_LEADS and associated lead extension tables – Underpin lead attribute derivation.
- AS_OPPORTUNITIES – Opportunity header data feeding pipeline metrics.
- AS_SALES_LEADS – Sales lead staging and qualification data.
- AS_RESOURCE_GROUPS / resource assignment objects – Support the
PARENT_RESOURCE_IDandMANAGER_PERSON_IDroll-ups. - FND_CURRENCIES – Provides validation for
TO_CURRENCY_CODEconversion context.
The object's standalone classification and its single documented outbound reference make lead-to-opportunity lineage the principal dependency to track during upgrades from 12.1.1 to 12.2.2.
-
Table: ASF_OPP_TOP_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:ASF.ASF_OPP_TOP_MV, object_name:ASF_OPP_TOP_MV, status:VALID, product: ASF - Sales Online , implementation_dba_data: APPS.ASF_OPP_TOP_MV ,
-
Table: PO_REQUISITION_SUPPLIERS
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITION_SUPPLIERS, object_name:PO_REQUISITION_SUPPLIERS, status:VALID, product: PO - Purchasing , description: This table holds the list of suppliers to which the contractor request is sent out , implementation_dba_data: PO.PO_REQUISITION_SUPPLIERS ,
-
Table: ASF_WIN_LOSS_COMPTATOR_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:ASF.ASF_WIN_LOSS_COMPTATOR_MV, object_name:ASF_WIN_LOSS_COMPTATOR_MV, status:VALID, product: ASF - Sales Online , implementation_dba_data: APPS.ASF_WIN_LOSS_COMPTATOR_MV ,
-
Table: PO_REQUISITION_SUPPLIERS
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITION_SUPPLIERS, object_name:PO_REQUISITION_SUPPLIERS, status:VALID, product: PO - Purchasing , description: This table holds the list of suppliers to which the contractor request is sent out , implementation_dba_data: PO.PO_REQUISITION_SUPPLIERS ,
-
Table: PO_REQUISITION_LINES_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITION_LINES_ALL, object_name:PO_REQUISITION_LINES_ALL, status:VALID, product: PO - Purchasing , description: Requisition lines , implementation_dba_data: PO.PO_REQUISITION_LINES_ALL ,
-
Table: PO_REQ_DIST_INTERFACE_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQ_DIST_INTERFACE_ALL, object_name:PO_REQ_DIST_INTERFACE_ALL, status:VALID, product: PO - Purchasing , description: Interface table for requisition distributions , implementation_dba_data: PO.PO_REQ_DIST_INTERFACE_ALL ,
-
Table: PO_REQ_DIST_INTERFACE_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQ_DIST_INTERFACE_ALL, object_name:PO_REQ_DIST_INTERFACE_ALL, status:VALID, product: PO - Purchasing , description: Interface table for requisition distributions , implementation_dba_data: PO.PO_REQ_DIST_INTERFACE_ALL ,
-
Table: PO_REQUISITIONS_INTERFACE_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITIONS_INTERFACE_ALL, object_name:PO_REQUISITIONS_INTERFACE_ALL, status:VALID, product: PO - Purchasing , description: Requisition Import interface table , implementation_dba_data: PO.PO_REQUISITIONS_INTERFACE_ALL ,
-
Table: PO_REQUISITION_LINES_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITION_LINES_ALL, object_name:PO_REQUISITION_LINES_ALL, status:VALID, product: PO - Purchasing , description: Requisition lines , implementation_dba_data: PO.PO_REQUISITION_LINES_ALL ,
-
Table: PO_REQUISITIONS_INTERFACE_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITIONS_INTERFACE_ALL, object_name:PO_REQUISITIONS_INTERFACE_ALL, status:VALID, product: PO - Purchasing , description: Requisition Import interface table , implementation_dba_data: PO.PO_REQUISITIONS_INTERFACE_ALL ,
-
VIEW: PO.PO_REQUISITION_SUPPLIERS#
12.2.2
-
TABLE: APPS.ASF_OPP_TOP_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:ASF.ASF_OPP_TOP_MV, object_name:ASF_OPP_TOP_MV, status:VALID,
-
TABLE: APPS.ASF_WIN_LOSS_COMPTATOR_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:ASF.ASF_WIN_LOSS_COMPTATOR_MV, object_name:ASF_WIN_LOSS_COMPTATOR_MV, status:VALID,
-
VIEW: PO.PO_REQ_DIST_INTERFACE_ALL#
12.2.2
-
VIEW: PO.PO_REQUISITION_SUPPLIERS#
12.2.2
owner:PO, object_type:VIEW, object_name:PO_REQUISITION_SUPPLIERS#, status:VALID,
-
VIEW: PO.PO_REQUISITION_LINES_ALL#
12.2.2
-
TABLE: PO.PO_REQUISITION_SUPPLIERS
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITION_SUPPLIERS, object_name:PO_REQUISITION_SUPPLIERS, status:VALID,
-
TABLE: PO.PO_REQUISITION_SUPPLIERS
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQUISITION_SUPPLIERS, object_name:PO_REQUISITION_SUPPLIERS, status:VALID,
-
VIEW: PO.PO_REQ_DIST_INTERFACE_ALL#
12.2.2
owner:PO, object_type:VIEW, object_name:PO_REQ_DIST_INTERFACE_ALL#, status:VALID,
-
View: PO_REQUISITION_LINES_MRC_V
12.2.2
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: PO_REQUISITION_LINES_MRC_V
12.1.1
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PO_REQUISITION_LINES_CLM_V
12.2.2
-
VIEW: PO.PO_REQUISITIONS_INTERFACE_ALL#
12.2.2
-
VIEW: APPS.POBV_REQUISITION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_REQUISITION_LINES, object_name:POBV_REQUISITION_LINES, status:VALID,
-
VIEW: APPS.POBV_REQUISITION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_REQUISITION_LINES, object_name:POBV_REQUISITION_LINES, status:VALID,
-
View: POBV_REQUISITION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_REQUISITION_LINES, object_name:POBV_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_REQUISITION_LINES ,
-
View: POBV_REQUISITION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_REQUISITION_LINES, object_name:POBV_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_REQUISITION_LINES ,
-
VIEW: APPS.PO_REQUISITION_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQUISITION_LINES_V, object_name:PO_REQUISITION_LINES_V, status:VALID,
-
VIEW: APPS.POFV_REQUISITION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_LINES, object_name:POFV_REQUISITION_LINES, status:VALID,
-
VIEW: APPS.POFV_REQUISITION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_LINES, object_name:POFV_REQUISITION_LINES, status:VALID,
-
VIEW: PO.PO_REQUISITION_LINES_ALL#
12.2.2
owner:PO, object_type:VIEW, object_name:PO_REQUISITION_LINES_ALL#, status:VALID,
-
VIEW: APPS.PO_REQUISITION_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQUISITION_LINES_V, object_name:PO_REQUISITION_LINES_V, status:VALID,
-
TABLE: PO.PO_REQ_DIST_INTERFACE_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQ_DIST_INTERFACE_ALL, object_name:PO_REQ_DIST_INTERFACE_ALL, status:VALID,
-
TABLE: PO.PO_REQ_DIST_INTERFACE_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQ_DIST_INTERFACE_ALL, object_name:PO_REQ_DIST_INTERFACE_ALL, status:VALID,
-
View: PO_REQUISITION_LINES_ALL_MRC_V
12.2.2
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PO_REQ_LINES_AUTOCREATE_V
12.2.2
owner:APPS, object_type:VIEW, object_name:PO_REQ_LINES_AUTOCREATE_V, status:VALID,
-
VIEW: APPS.PO_REQ_LINES_AUTOCREATE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:PO_REQ_LINES_AUTOCREATE_V, status:VALID,
-
VIEW: APPS.PO_REQUISITION_LINES_CLM_V
12.2.2
owner:APPS, object_type:VIEW, object_name:PO_REQUISITION_LINES_CLM_V, status:VALID,
-
View: PO_REQUISITION_LINES_ALL_MRC_V
12.1.1
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PO_REQ_LINES_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_LINES_TRX_V, object_name:PO_REQ_LINES_TRX_V, status:VALID,
-
VIEW: APPS.PO_REQUISITION_LINES_INQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQUISITION_LINES_INQ_V, object_name:PO_REQUISITION_LINES_INQ_V, status:VALID,
-
View: PO_REQ_LINES_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_LINES_TRX_V, object_name:PO_REQ_LINES_TRX_V, status:VALID, product: PO - Purchasing , description: Requisition Lines View. , implementation_dba_data: APPS.PO_REQ_LINES_TRX_V ,
-
VIEW: PO.PO_REQUISITIONS_INTERFACE_ALL#
12.2.2
owner:PO, object_type:VIEW, object_name:PO_REQUISITIONS_INTERFACE_ALL#, status:VALID,
-
VIEW: APPS.PO_REQUISITION_LINES_INQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQUISITION_LINES_INQ_V, object_name:PO_REQUISITION_LINES_INQ_V, status:VALID,
-
APPS.JAI_CMN_HOOK_PKG SQL Statements
12.2.2
-
View: PO_REQUISITION_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQUISITION_LINES_V, object_name:PO_REQUISITION_LINES_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_REQUISITION_LINES_V ,
-
APPS.JAI_CMN_HOOK_PKG SQL Statements
12.1.1
-
View: PO_REQUISITION_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQUISITION_LINES_V, object_name:PO_REQUISITION_LINES_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_REQUISITION_LINES_V ,
-
View: POFV_REQUISITION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_LINES, object_name:POFV_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUISITION_LINES ,
-
View: POFV_REQUISITION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_LINES, object_name:POFV_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUISITION_LINES ,