Search Results so_headers
Overview
ICX_EDM_CUSTOMER_PROJ_V is a reporting view shipped within the Oracle iProcurement (ICX) product family in Oracle EBS 12.1.1 and 12.2.2. Its documented purpose is to present a "Project Information Summary View by Customer," exposing a denormalized, customer-centric projection of Oracle Projects data alongside related receivables and sales information. The view is intended for use by iProcurement and related EDM (Enterprise Data Management) reporting components that require a flat, query-friendly list of projects associated with customers.
The ETRM metadata notes that the object is "Not implemented in this database," meaning the view definition ships with the product but may not be instantiated in every deployment. Administrators verifying its presence should query ALL_VIEWS or DBA_VIEWS before relying on it. The user's search term "so_headers" is relevant because the second branch of the view's UNION references SO_HEADERS directly.
Underlying Base Objects
The view is defined over the following base tables, as documented in the view text:
- PA_PROJECT_CUSTOMERS — associates projects with customers and billing splits.
- PA_PROJECTS_ALL — the master project definition table.
- PA_PROJECT_STATUSES — provides the translated project status name.
- RA_CUSTOMERS — supplies customer number, name, and primary salesperson.
- RA_SALESREPS — resolves the salesperson name.
- HR_ORGANIZATION_UNITS — resolves the carrying-out organization name.
- SO_HEADERS and SO_LINES — used in the UNION branch to derive projects linked to sales order lines.
The view is a UNION of two SELECT statements. The first joins PA_PROJECT_CUSTOMERS to PA_PROJECTS_ALL, filtering out templates (TEMPLATE_FLAG != 'Y'). The second joins SO_LINES to SO_HEADERS via HEADER_ID and then to projects, so projects reachable only through sales orders are also returned. Outer joins (+) on HR_ORGANIZATION_UNITS, RA_SALESREPS, and the second branch's organization indicate the view tolerates missing organization or salesperson data. Note the SO_HEADERS branch is the reason a search for "so_headers" surfaces this object.
Key Columns
The view exposes a consistent column list across both UNION branches. Principal columns include:
- PROJECT_ID, PROJECT_NUMBER (SEGMENT1), PROJECT_NAME, PROJECT_DESCRIPTION — project identity.
- ORGANIZATION_ID and ORGANIZATION_NAME — the carrying-out organization.
- PROJECT_TYPE, PROJECT_STATUS, PROJECT_STATUS_NAME — classification and status.
- PROJECT_START_DATE, PROJECT_END_DATE — from START_DATE and COMPLETION_DATE.
- CUSTOMER_ID, CUSTOMER_NUMBER, CUSTOMER_NAME — customer identity.
- PRIMARY_SALESREP_ID and SALESPERSON — sales ownership.
- CUSTOMER_BILL_SPLIT — billing split percentage where present.
A literal NULL column appears after ORGANIZATION_NAME, and the second branch supplies TO_NUMBER(NULL) for the billing split, preserving column parity across the UNION.
Common Use Cases and Queries
Typical uses include iProcurement project selection by customer, cross-referencing sales orders to projects, and reporting on projects by salesperson or organization. A simple query:
SELECT project_number, project_name, customer_name, salesperson FROM icx_edm_customer_proj_v WHERE customer_name = :cust;
To find projects linked via sales orders, join SO_HEADERS separately on CUSTOMER_ID, since the view collapses that linkage. Always validate existence with DBA_VIEWS given the "not implemented" note.
-
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_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: ICX_PANEL_SO_SUMMARY_V
12.2.2
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: ICX_PANEL_SO_SUMMARY_V
12.1.1
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
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: 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 ,
-
View: ICX_EDM_SALES_ORDER_V
12.1.1
product: ICX - Oracle iProcurement , description: Project Related Sales Order View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_EDM_SALES_ORDER_V
12.2.2
product: ICX - Oracle iProcurement , description: Project Related Sales Order View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_SO_LINES_VIEW_RETURNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_SO_LINES_VIEW_RETURNS_V, object_name:ICX_SO_LINES_VIEW_RETURNS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_SO_LINES_VIEW_RETURNS_V ,
-
View: ICX_SO_LINES_VIEW_RETURNS_V
12.2.2
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: ICX_SO_LINES_VIEW_LINES_V
12.2.2
product: ICX - Oracle iProcurement , description: Order Entry Line View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_SO_LINES_VIEW_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_SO_LINES_VIEW_LINES_V, object_name:ICX_SO_LINES_VIEW_LINES_V, status:VALID, product: ICX - Oracle iProcurement , description: Order Entry Line View , implementation_dba_data: APPS.ICX_SO_LINES_VIEW_LINES_V ,
-
View: ICX_SO_HEADERS_V
12.2.2
product: ICX - Oracle iProcurement , description: Order Entry Header View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_SO_HEADERS_V
12.1.1
product: ICX - Oracle iProcurement , description: Order Entry Header View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_TAX_LINES_CREDIT_CHECK_V
12.2.2
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: ICX_TAX_LINES_CREDIT_CHECK_V
12.1.1
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,