Search Results project_category
Overview
APPS.ICX_EDM_KEY_MEMBER_PROJ_V is an Oracle E-Business Suite reporting view that exposes the relationship between projects and their designated key members. In the EBS 12.1.1 and 12.2.2 releases, this view belongs to the ICX (Oracle iSupport / Interaction Center) and EDM (Enterprise Data Management) functional area, and it is designed to flatten project header attributes with the person-level records held in the Oracle Projects module. It presents the combination of a project, its key member person, the carrying-out organization, and the project status in a single denormalized result set suitable for direct reporting or integration consumption.
The view is a read-only, DISTINCT-based query, which means downstream consumers can rely on it to return one row per unique project and key member combination without having to write the join logic themselves. Because it is owned by APPS, it is accessible to any responsibility or concurrent program that connects with the APPS schema, which is typical for Oracle EBS reporting views of this type.
Underlying Base Objects
The documented base objects referenced by this view are:
- PA_PROJECT_PLAYERS (VIEW) — provides the player and key member relationship to the project.
- PA_PROJECTS_ALL (SYNONYM) — the project master, supplying number, name, description, type, status code, start date, and completion date.
- PER_PEOPLE_F (VIEW) — the effective-dated person record, used to resolve the key member full name and person ID.
- HR_ORGANIZATION_UNITS (VIEW) — resolves the carrying-out organization name.
- PA_PROJECT_STATUSES (SYNONYM) — provides the descriptive project status name.
- HR_GENERAL, HR_PERSON_NAME, and HR_SECURITY (PACKAGE) — supporting HR infrastructure, typically used for name formatting and security-based row filtering.
The joins are driven from PA_PROJECT_PLAYERS to PA_PROJECTS_ALL on PROJECT_ID, to PER_PEOPLE_F on PERSON_ID, to HR_ORGANIZATION_UNITS on CARRYING_OUT_ORGANIZATION_ID, and to PA_PROJECT_STATUSES on PROJECT_STATUS_CODE. Template projects are excluded through the predicate PROJ.TEMPLATE_FLAG != 'Y'.
Key Columns
- PROJECT_ID — the surrogate key of the project.
- PROJECT_NUMBER (SEGMENT1) and PROJECT_NAME — the project's user-facing identifiers.
- PROJECT_DESCRIPTION — free-text description of the project.
- ORGANIZATION_ID and ORGANIZATION_NAME — the carrying-out organization.
- PROJECT_TYPE, PROJECT_STATUS, and PROJECT_STATUS_NAME — classification and lifecycle state.
- PROJECT_START_DATE and PROJECT_END_DATE — start date and completion date.
- KEY_MEMBER_ID and KEY_MEMBER_NAME — the person assigned as key member on the project.
Two columns are explicitly defined as NULL in the view text; these are placeholders reserved for downstream EDM consumption and carry no value in the base definition.
Common Use Cases and Queries
Typical scenarios include project key-member rosters, organizational project reporting, and data extraction into external systems. A representative query follows:
SELECT PROJECT_NUMBER, PROJECT_NAME, PROJECT_STATUS_NAME, KEY_MEMBER_NAME, ORGANIZATION_NAME FROM APPS.ICX_EDM_KEY_MEMBER_PROJ_V WHERE PROJECT_ID = :p_project_id;SELECT ORGANIZATION_NAME, COUNT(DISTINCT PROJECT_ID) FROM APPS.ICX_EDM_KEY_MEMBER_PROJ_V GROUP BY ORGANIZATION_NAME;SELECT KEY_MEMBER_NAME, PROJECT_NUMBER FROM APPS.ICX_EDM_KEY_MEMBER_PROJ_V WHERE PROJECT_STATUS_NAME = 'Approved';
Because the view relies on HR_SECURITY, row visibility can be constrained by the HR security profile in force at runtime.
-
VIEW: APPS.ICX_EDM_KEY_MEMBER_PROJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_KEY_MEMBER_PROJ_V, object_name:ICX_EDM_KEY_MEMBER_PROJ_V, status:VALID,
-
VIEW: APPS.ICX_EDM_BUYER_SUP_PROJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_BUYER_SUP_PROJ_V, object_name:ICX_EDM_BUYER_SUP_PROJ_V, status:VALID,
-
VIEW: APPS.ICX_EDM_BUYER_SUP_PROJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_BUYER_SUP_PROJ_V, object_name:ICX_EDM_BUYER_SUP_PROJ_V, status:VALID,
-
VIEW: APPS.ICX_EDM_PLANNER_PROJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_PLANNER_PROJ_V, object_name:ICX_EDM_PLANNER_PROJ_V, status:VALID,
-
VIEW: APPS.ICX_EDM_PLANNER_PROJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_PLANNER_PROJ_V, object_name:ICX_EDM_PLANNER_PROJ_V, status:VALID,
-
VIEW: APPS.ICX_EDM_KEY_MEMBER_PROJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_KEY_MEMBER_PROJ_V, object_name:ICX_EDM_KEY_MEMBER_PROJ_V, status:VALID,
-
View: ICX_EDM_KEY_MEMBER_PROJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_KEY_MEMBER_PROJ_V, object_name:ICX_EDM_KEY_MEMBER_PROJ_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Information Summary View by Key Member , implementation_dba_data: APPS.ICX_EDM_KEY_MEMBER_PROJ_V ,
-
View: ICX_EDM_KEY_MEMBER_PROJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_KEY_MEMBER_PROJ_V, object_name:ICX_EDM_KEY_MEMBER_PROJ_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Information Summary View by Key Member , implementation_dba_data: APPS.ICX_EDM_KEY_MEMBER_PROJ_V ,
-
View: PA_XC_PROJECT_DETAILS_V
12.2.2
product: PA - Projects , description: View All Project Details , implementation_dba_data: Not implemented in this database ,
-
View: ICX_EDM_CUSTOMER_PROJ_V
12.2.2
product: ICX - Oracle iProcurement , description: Project Information Summary View by Customer , implementation_dba_data: Not implemented in this database ,
-
APPS.JA_CN_PS_SI_PRJ_EXPORT_PKG SQL Statements
12.2.2
-
View: PA_XC_PROJECT_DETAILS_V
12.1.1
product: PA - Projects , description: View All Project Details , implementation_dba_data: Not implemented in this database ,
-
View: ICX_EDM_BUYER_SUP_PROJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_BUYER_SUP_PROJ_V, object_name:ICX_EDM_BUYER_SUP_PROJ_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Information Summary View by Buyer / Supplier , implementation_dba_data: APPS.ICX_EDM_BUYER_SUP_PROJ_V ,
-
View: ICX_EDM_BUYER_SUP_PROJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_BUYER_SUP_PROJ_V, object_name:ICX_EDM_BUYER_SUP_PROJ_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Information Summary View by Buyer / Supplier , implementation_dba_data: APPS.ICX_EDM_BUYER_SUP_PROJ_V ,
-
View: ICX_EDM_CUSTOMER_PROJ_V
12.1.1
product: ICX - Oracle iProcurement , description: Project Information Summary View by Customer , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.JA_CN_PS_SI_PRJ_EXPORT_PKG
12.2.2
-
View: ICX_EDM_PLANNER_PROJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_PLANNER_PROJ_V, object_name:ICX_EDM_PLANNER_PROJ_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Information Summary View by Planner , implementation_dba_data: APPS.ICX_EDM_PLANNER_PROJ_V ,
-
View: ICX_EDM_PLANNER_PROJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_PLANNER_PROJ_V, object_name:ICX_EDM_PLANNER_PROJ_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Information Summary View by Planner , implementation_dba_data: APPS.ICX_EDM_PLANNER_PROJ_V ,
-
Lookup Type: JA_CN_XML_TAGS
12.2.2
product: JA - Asia/Pacific Localizations , meaning: XML Tags , description: XML Tags ,
-
APPS.JA_CN_PS_SI_PRJ_EXPORT_PKG dependencies on JA_CN_UTILITY
12.2.2
-
eTRM - ICX Tables and Views
12.2.2
-
eTRM - ICX Tables and Views
12.1.1