Search Results probability_member_id
Overview
APPS.PA_FCST_PROJ_INFO_V is a lightweight reporting view in the Oracle E-Business Suite Projects (PA) module that joins project master data to forecast probability information. Its purpose is to expose a denormalized, single-row-per-project result set containing the project identifier, functional currency, name, number, and the associated probability percentage. This makes it convenient for forecast and pipeline reporting where a project's weighted value must be derived from a probability factor without requiring the caller to write explicit join logic against the probability tables.
The view is defined in the APPS schema and is owned by APPS, consistent with standard EBS object ownership. Because it is a view rather than a table, it carries no storage of its own and always reflects the current state of its two underlying base objects. In the context of the ETRM (Electronic Technical Reference Manual) for releases 12.1.1 and 12.2.2, the view is documented with a straightforward two-table definition and no additional PL/SQL logic.
Underlying Base Objects
The ETRM metadata lists two referenced base objects, both accessed through synonyms:
- PA_PROJECTS_ALL (SYNONYM) — the primary project definition table, aliased as P1 in the view text. It supplies the project_id, projfunc_currency_code, name, and segment1 columns.
- PA_PROBABILITY_MEMBERS (SYNONYM) — the probability lookup table, aliased as P2, supplying the probability_percentage column.
The join is expressed as p1.probability_member_id = p2.probability_member_id(+). This is an outer join on the probability side, meaning every project row is returned even when no matching probability member exists. This is significant for reporting because projects without an assigned probability member will still appear, with prob_per returning NULL. The presence of the probability_member_id column on PA_PROJECTS_ALL is the linkage that allows each project to be associated with exactly one probability member and therefore one probability percentage.
Key Columns
- project_id — Surrogate primary key of the project, sourced from PA_PROJECTS_ALL.project_id. Used to join to other project-related views and tables.
- project_currency — The project functional currency code (PA_PROJECTS_ALL.projfunc_currency_code), indicating the currency in which project amounts are held.
- project_name — The descriptive name of the project (PA_PROJECTS_ALL.name).
- project_num — The project number (PA_PROJECTS_ALL.segment1), the user-visible project identifier.
- prob_per — The probability percentage from PA_PROBABILITY_MEMBERS.probability_percentage. This is the forecast weighting factor. Because of the outer join it may be NULL when the project has no probability member assigned.
The column name probability_member_id that a user might search for does not appear as a projected column in the view; it exists only as the join key on the underlying PA_PROJECTS_ALL table. Users searching on that term are typically looking for how probability is resolved for a project, and this view is the exposed result of that resolution.
Common Use Cases and Queries
Typical scenarios include pipeline reports showing weighted forecast amounts, project listings requiring the probability multiplier, and integrations that need a compact project-plus-probability dataset.
SELECT project_num,
project_name,
project_currency,
prob_per,
NVL(prob_per, 0) / 100 AS prob_factor
FROM apps.pa_fcst_proj_info_v;
To identify projects lacking a probability assignment (a common data-quality check):
SELECT project_id, project_num, project_name FROM apps.pa_fcst_proj_info_v WHERE prob_per IS NULL;
Because the view is a simple join of two base objects and exposes only five columns, it should be treated as a convenience layer. For broader project forecasting needs, it is generally joined back to PA_PROJECTS_ALL or to forecast amount tables using project_id. All access should respect standard EBS security and the APPS schema synonym.
-
VIEW: APPS.PA_FCST_PROJ_INFO_V
12.1.1
-
VIEW: APPS.PA_FCST_PROJ_INFO_V
12.2.2
-
VIEW: PA.PA_PROBABILITY_MEMBERS#
12.2.2
-
View: PA_PROBABILITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROBABILITIES_V, object_name:PA_PROBABILITIES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROBABILITIES_V ,
-
View: PA_PROBABILITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROBABILITIES_V, object_name:PA_PROBABILITIES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROBABILITIES_V ,
-
View: PA_FCST_PROJ_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJ_INFO_V, object_name:PA_FCST_PROJ_INFO_V, status:VALID, product: PA - Projects , description: PA_FCST_PROJ_INFO_V is a view that shows project information , implementation_dba_data: APPS.PA_FCST_PROJ_INFO_V ,
-
VIEW: APPS.PA_PROBABILITIES_V
12.2.2
-
VIEW: APPS.PA_PROBABILITIES_V
12.1.1
-
View: PA_FCST_PROJ_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJ_INFO_V, object_name:PA_FCST_PROJ_INFO_V, status:VALID, product: PA - Projects , description: PA_FCST_PROJ_INFO_V is a view that shows project information , implementation_dba_data: APPS.PA_FCST_PROJ_INFO_V ,
-
TABLE: PA.PA_PROBABILITY_MEMBERS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROBABILITY_MEMBERS, object_name:PA_PROBABILITY_MEMBERS, status:VALID,
-
TABLE: PA.PA_PROBABILITY_MEMBERS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROBABILITY_MEMBERS, object_name:PA_PROBABILITY_MEMBERS, status:VALID,
-
APPS.PA_PROJECTS_MAINT_UTILS SQL Statements
12.2.2
-
APPS.PA_PROJECTS_MAINT_UTILS SQL Statements
12.1.1
-
VIEW: PA.PA_PROBABILITY_MEMBERS#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_PROBABILITY_MEMBERS#, status:VALID,
-
VIEW: APPS.PA_PROJECTS_PROBABILITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_PROBABILITY_V, object_name:PA_PROJECTS_PROBABILITY_V, status:VALID,
-
VIEW: APPS.PA_PROBABILITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROBABILITIES_V, object_name:PA_PROBABILITIES_V, status:VALID,
-
VIEW: APPS.PA_PROJECTS_PROBABILITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_PROBABILITY_V, object_name:PA_PROJECTS_PROBABILITY_V, status:VALID,
-
VIEW: APPS.PA_PROBABILITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROBABILITIES_V, object_name:PA_PROBABILITIES_V, status:VALID,
-
VIEW: APPS.PA_FCST_PROJECT_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJECT_LIST_V, object_name:PA_FCST_PROJECT_LIST_V, status:VALID,
-
View: PA_PROJECTS_PROBABILITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_PROBABILITY_V, object_name:PA_PROJECTS_PROBABILITY_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECTS_PROBABILITY_V ,
-
VIEW: APPS.PA_FCST_PROJECT_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJECT_LIST_V, object_name:PA_FCST_PROJECT_LIST_V, status:VALID,
-
View: PA_PROJECTS_PROBABILITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_PROBABILITY_V, object_name:PA_PROJECTS_PROBABILITY_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECTS_PROBABILITY_V ,
-
View: PA_PROJECTS_O
12.2.2
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PA_PROJECTS_CUST_360_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_CUST_360_V, object_name:PA_PROJECTS_CUST_360_V, status:VALID,
-
View: PA_PROJECTS_O
12.1.1
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_FCST_PROJECT_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJECT_LIST_V, object_name:PA_FCST_PROJECT_LIST_V, status:VALID, product: PA - Projects , description: PA_FCST_PROJECT_LIST_V is a view that shows forecasting periods , implementation_dba_data: APPS.PA_FCST_PROJECT_LIST_V ,
-
View: PA_FCST_PROJECT_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJECT_LIST_V, object_name:PA_FCST_PROJECT_LIST_V, status:VALID, product: PA - Projects , description: PA_FCST_PROJECT_LIST_V is a view that shows forecasting periods , implementation_dba_data: APPS.PA_FCST_PROJECT_LIST_V ,
-
VIEW: APPS.PA_FCST_PROJECT_LIST_V
12.1.1
-
VIEW: PA.PA_PROJECTS_ALL#
12.2.2
-
VIEW: APPS.PA_FCST_PROJECT_LIST_V
12.2.2
-
APPS.PA_OPPORTUNITY_MGT_PVT SQL Statements
12.2.2
-
VIEW: APPS.PA_PROJECTS_AMG_V
12.1.1
-
VIEW: APPS.PA_PROJECTS_AMG_V
12.2.2
-
View: PA_PROJECTS_AMG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_AMG_V, object_name:PA_PROJECTS_AMG_V, status:VALID, product: PA - Projects , description: Internal , implementation_dba_data: APPS.PA_PROJECTS_AMG_V ,
-
APPS.PA_OPPORTUNITY_MGT_PVT SQL Statements
12.1.1
-
View: PA_PROJECTS
12.1.1
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECTS_AMG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_AMG_V, object_name:PA_PROJECTS_AMG_V, status:VALID, product: PA - Projects , description: Internal , implementation_dba_data: APPS.PA_PROJECTS_AMG_V ,
-
View: PA_PROJECTS
12.2.2
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_LISTS_PORTLET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_LISTS_PORTLET_V, object_name:PA_PROJECT_LISTS_PORTLET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_LISTS_PORTLET_V ,
-
Lookup Type: OVERRIDE FIELD
12.2.2
product: PA - Projects , meaning: Override Field , description: Override Field ,
-
Lookup Type: OVERRIDE FIELD
12.1.1
product: PA - Projects , meaning: Override Field , description: Override Field ,
-
View: PA_PROJECT_LISTS_PORTLET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_LISTS_PORTLET_V, object_name:PA_PROJECT_LISTS_PORTLET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_LISTS_PORTLET_V ,
-
View: AMW_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROJECTS_V, object_name:AMW_PROJECTS_V, status:VALID, product: AMW - Internal Controls Manager , description: This view returns information about Audit Project. , implementation_dba_data: APPS.AMW_PROJECTS_V ,
-
View: AMW_PROJECTS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This view returns information about Audit Project. , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECTS_CUST_360_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_CUST_360_V, object_name:PA_PROJECTS_CUST_360_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECTS_CUST_360_V ,
-
View: PA_PROJECTS_CUST_360_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_CUST_360_V, object_name:PA_PROJECTS_CUST_360_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECTS_CUST_360_V ,
-
VIEW: APPS.PA_PROJECTS_CUST_360_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_CUST_360_V, object_name:PA_PROJECTS_CUST_360_V, status:VALID,
-
View: PA_PROJECT_LISTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_LISTS_V, object_name:PA_PROJECT_LISTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_LISTS_V ,
-
View: PA_PROJECT_LISTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_LISTS_V, object_name:PA_PROJECT_LISTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_LISTS_V ,
-
VIEW: APPS.PA_PROJECT_LISTS_PORTLET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_LISTS_PORTLET_V, object_name:PA_PROJECT_LISTS_PORTLET_V, status:VALID,