Search Results project_description
Overview
APPS.ICX_EDM_PLANNER_PROJ_V is a reporting view that exposes project information as seen from the perspective of a materials planner. The suffix _V confirms that it is a view rather than a stored table, and the ICX_EDM prefix ties it to the Oracle iProcurement / e-Commerce Gateway "Employee Direct" and planner-oriented self-service flows, where planning and purchasing users need to see the projects against which demand and supply are associated. The view presents a de-normalized, report-friendly result set that joins project master data from Oracle Projects to the organizations, planners, and people that drive discrete manufacturing and purchasing activity.
Its primary role is to answer the question "which projects are my planners actually dealing with?" by correlating three demand/supply sources — purchase order distributions, purchase requisition lines/distributions, and work in process (WIP) discrete jobs — back to PA_PROJECTS_ALL. This makes it useful in Oracle EBS 12.1.1 and 12.2.2 reporting, particularly for OBIEE, Discoverer, and custom concurrent programs that need a consolidated project-plus-planner listing without writing the multi-table join themselves.
Underlying Base Objects
The documented base objects fall into three functional groups. First, the project hierarchy is supplied by PA_PROJECTS_ALL (the project master, providing the project number, name, and description) and PA_PROJECT_STATUSES, which supplies the human-readable status name. Second, the organizational and personnel context comes from HR_ORGANIZATION_UNITS (the carrying-out organization), PER_PEOPLE_F (the planner's person record), and the HR_PERSON_NAME package used to derive the planner's display name. Third, the transactional sources that drive the row set are the purchasing synonyms PO_DISTRIBUTIONS, PO_LINES, PO_REQUISITION_LINES, and PO_REQ_DISTRIBUTIONS, together with WIP_DISCRETE_JOBS, MTL_SYSTEM_ITEMS, and MTL_PLANNERS. The presence of MTL_PLANNERS and MTL_SYSTEM_ITEMS is significant: the view is anchored on planner codes defined on the item master, so it returns projects only where an active planner assignment exists.
Supporting package objects — HR_GENERAL, HR_SECURITY, and PJM_SEIBAN_NUMBERS — are referenced indirectly, typically for security and numbering logic inherited through the underlying synonyms.
Key Columns
PROJECT_ID,PROJECT_NUMBER(fromPA_PROJECTS_ALL.SEGMENT1), andPROJECT_NAME— the project identifiers.DESCRIPTION/PROJECT_DESCRIPTION— the project long description; note that the twoUNIONbranches label this column differently, which is the likely origin of the user's "project_description" search.ORGANIZATION_IDandORGANIZATION_NAME— the carrying-out organization of the project.PROJECT_TYPE,PROJECT_STATUS_CODE, andPROJECT_STATUS_NAME— classification and current status of the project.START_DATEandCOMPLETION_DATE— project scheduling dates.EMPLOYEE_IDandFULL_NAME— the assigned planner and their person name.
Common Use Cases and Queries
Typical uses include planner-facing project listings, project demand reports for purchasing, and validation of project-to-planner assignment coverage. A simple query to list active, non-template projects with their planner and description is:
SELECT project_number, project_name, description, organization_name, project_status_name, full_name FROM apps.icx_edm_planner_proj_v WHERE project_status_name = 'Approved' ORDER BY project_number;- Filter by planner:
SELECT project_number, description FROM apps.icx_edm_planner_proj_v WHERE full_name = :planner_name; - Filter by organization:
SELECT project_number, project_name, description FROM apps.icx_edm_planner_proj_v WHERE organization_name = :org ORDER BY project_name;
Because the view performs DISTINCT across a multi-branch union, it is best used for reporting rather than high-volume transactional joins; the planner name column is populated via an outer join, so projects whose planner has no person record still appear with a null FULL_NAME.
-
VIEW: APPS.ICX_EDM_PLANNER_PROJ_V
12.1.1
-
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 ,
-
VIEW: MSC.MSC_ST_PROJECTS#
12.2.2
-
VIEW: MSC.MSC_PROJECTS#
12.2.2
-
VIEW: MSC.MSC_ST_PROJECT_TASKS#
12.2.2
-
View: ICX_EDM_CUSTOMER_TASK_V
12.2.2
product: ICX - Oracle iProcurement , description: Task Information Summary View by Customer , implementation_dba_data: Not implemented in this database ,
-
MATERIALIZED VIEW: APPS.MSC_PHUB_PROJECTS_MV
12.2.2
-
VIEW: APPS.ICX_EDM_CUSTOMER_TASK_V
12.1.1
-
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 ,
-
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_CUSTOMER_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_CUSTOMER_TASK_V, object_name:ICX_EDM_CUSTOMER_TASK_V, status:VALID, product: ICX - Oracle iProcurement , description: Task Information Summary View by Customer , implementation_dba_data: APPS.ICX_EDM_CUSTOMER_TASK_V ,
-
View: PA_PO_PROJECTS_EXPEND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PO_PROJECTS_EXPEND_V, object_name:PA_PO_PROJECTS_EXPEND_V, status:VALID, product: PA - Projects , description: PA_PO_PROJECTS_EXPEND_V shows the projects included in the list of values for expenditure entry from PO. , implementation_dba_data: APPS.PA_PO_PROJECTS_EXPEND_V ,
-
VIEW: APPS.ICX_EDM_BUYER_SUP_PROJ_V
12.1.1
-
VIEW: APPS.AP_WEB_PA_PROJECTS_V
12.1.1
-
VIEW: APPS.AP_WEB_PA_PROJECTS_V
12.2.2
-
VIEW: APPS.ICX_EDM_PLANNER_PROJ_V
12.2.2
-
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_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 ,
-
VIEW: APPS.PA_PO_PROJECTS_EXPEND_V
12.2.2
-
View: MRP_AP_PROJECTS_V
12.1.1
product: MRP - Master Scheduling/MRP , implementation_dba_data: Not implemented in this database ,
-
View: MRP_AP_PROJECTS_V
12.2.2
product: MRP - Master Scheduling/MRP , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ICX_EDM_BUYER_SUP_PROJ_V
12.2.2
-
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: AP_WEB_PA_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_WEB_PA_PROJECTS_V, object_name:AP_WEB_PA_PROJECTS_V, status:VALID, product: AP - Payables , description: The Project number list of values in Oracle Internet Expenses is based on this view , implementation_dba_data: APPS.AP_WEB_PA_PROJECTS_V ,
-
View: AP_WEB_PA_PROJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_WEB_PA_PROJECTS_V, object_name:AP_WEB_PA_PROJECTS_V, status:VALID, product: AP - Payables , description: The Project number list of values in Oracle Internet Expenses is based on this view , implementation_dba_data: APPS.AP_WEB_PA_PROJECTS_V ,
-
VIEW: APPS.ICX_EDM_KEY_MEMBER_PROJ_V
12.1.1
-
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: APPS.PJM_PROJECTS_MTLL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECTS_MTLL_V, object_name:PJM_PROJECTS_MTLL_V, status:VALID,
-
VIEW: APPS.MSC_PHUB_PROJECTS_MV#
12.2.2
-
VIEW: APPS.ICX_EDM_PROJECT_V
12.1.1
-
VIEW: APPS.ICX_EDM_PROJECT_V
12.2.2
-
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: APPS.PJM_PROJECTS_MTLL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECTS_MTLL_V, object_name:PJM_PROJECTS_MTLL_V, status:VALID,
-
TABLE: APPS.MSC_PHUB_PROJECTS_MV
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:MSC.MSC_PHUB_PROJECTS_MV, object_name:MSC_PHUB_PROJECTS_MV, status:VALID,
-
VIEW: APPS.ICX_EDM_KEY_MEMBER_PROJ_V
12.2.2
-
VIEW: MSC.MSC_ST_PROJECTS#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_ST_PROJECTS#, status:VALID,
-
VIEW: APPS.MSC_PHUB_PROJECTS_MV#
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_PHUB_PROJECTS_MV#, status:VALID,
-
VIEW: APPS.PJM_PROJECTS_ALL_OU_SECURE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:PJM_PROJECTS_ALL_OU_SECURE_V, status:VALID,
-
VIEW: APPS.PJM_PROJECTS_SECURE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:PJM_PROJECTS_SECURE_V, status:VALID,
-
VIEW: APPS.GMS_PROJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_PROJECTS_V, object_name:GMS_PROJECTS_V, status:VALID,
-
MATERIALIZED VIEW: APPS.MSC_PHUB_PROJECTS_MV
12.2.2
owner:APPS, object_type:MATERIALIZED VIEW, object_name:MSC_PHUB_PROJECTS_MV, status:VALID,
-
VIEW: APPS.AP_WEB_PA_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_WEB_PA_PROJECTS_V, object_name:AP_WEB_PA_PROJECTS_V, status:VALID,
-
VIEW: APPS.PJM_PROJECTS_MTLL_SV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECTS_MTLL_SV, object_name:PJM_PROJECTS_MTLL_SV, status:VALID,
-
VIEW: APPS.GMS_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_PROJECTS_V, object_name:GMS_PROJECTS_V, status:VALID,
-
VIEW: APPS.PJM_ORG_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_ORG_PROJECTS_V, object_name:PJM_ORG_PROJECTS_V, status:VALID,
-
VIEW: APPS.PJM_PROJECTS_MTLL_PSV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECTS_MTLL_PSV, object_name:PJM_PROJECTS_MTLL_PSV, status:VALID,
-
View: HXTFV_PROJECT_ACCOUNTING
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXTFV_PROJECT_ACCOUNTING, object_name:HXTFV_PROJECT_ACCOUNTING, status:VALID, product: HXT - Time and Labor , implementation_dba_data: APPS.HXTFV_PROJECT_ACCOUNTING ,
-
VIEW: APPS.PJM_PROJECTS_ORG_OU_SECURE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:PJM_PROJECTS_ORG_OU_SECURE_V, status:VALID,
-
VIEW: APPS.PA_PROJECTS_ALL_EXPEND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_ALL_EXPEND_V, object_name:PA_PROJECTS_ALL_EXPEND_V, status:VALID,
-
VIEW: APPS.PJM_PROJECTS_ORG_OU_SECURE_V
12.2.2
owner:APPS, object_type:VIEW, object_name:PJM_PROJECTS_ORG_OU_SECURE_V, status:VALID,