Search Results fiscal_yearend_month
Overview
ICX_PANEL_CUSTOMER_V is a reporting view within the Oracle iProcurement (ICX) module of Oracle E-Business Suite. It presents a consolidated customer profile surface that combines raw Receivables customer attributes with decoded, human-readable values produced by calls to the package function ICX_CUSTOMER_PANEL.GET_AR_CODE. The view is therefore best understood as a presentation layer over RA_CUSTOMERS rather than a purely relational projection: several columns are returned as translated display strings instead of their underlying lookup codes.
The view is significant to users who search on customer_prospect_code, because it exposes the CUSTOMER_PROSPECT_CODE attribute in both raw and decoded form. The raw CUSTOMER_CODE (prospect) column carries the stored lookup value, while the decoded column — produced by GET_AR_CODE('CUSTOMER_PROSPECT_CODE', CUSTOMER_PROSPECT_CODE) — yields the descriptive meaning used in iProcurement panel rendering and downstream reporting.
Per the documented ETRM metadata, this view is marked as "Not implemented in this database," meaning it may be absent from certain environments or superseded by alternate iProcurement panel definitions. This must be confirmed against the specific 12.1.1 or 12.2.2 instance before relying on it.
Underlying Base Objects
The documented source object is RA_CUSTOMERS, the master customer and prospect table in Oracle Receivables. All columns in the SELECT list derive from RA_CUSTOMERS, with the exception of the translated columns computed at runtime by ICX_CUSTOMER_PANEL.GET_AR_CODE.
The ETRM metadata records no additional referenced base objects, though in practice the GET_AR_CODE function may internally consult Receivables lookup views such as AR_LOOKUPS. This dependency is functional, not structural, and is not listed in the documented view metadata.
Because the view is a single-source projection from RA_CUSTOMERS, joins on CUSTOMER_ID remain valid against any Receivables object keyed on the same column.
Key Columns
- CUSTOMER_ID — Primary identifier for the customer or prospect record in RA_CUSTOMERS.
- CUSTOMER_NAME / CUSTOMER_NAME_UPPER — Display name and its uppercase equivalent, the latter frequently used for case-insensitive search and sorting.
- CUSTOMER_CODE — Raw value of CUSTOMER_PROSPECT_CODE, indicating whether the party is an active customer or a prospect.
- CUSTOMER_PROSPECT_CODE — The decoded, human-readable form of the same attribute, produced via GET_AR_CODE.
- STATUS_CODE / STATUS — Raw and decoded customer status values.
- CUSTOMER_TYPE — Decoded customer type (for example, internal or external party classification).
- CUSTOMER_CLASS_CODE — Receivables customer class assignment.
- SALES_CHANNEL_CODE / SALES_CHANNEL — Raw and decoded sales channel references.
- FOB_POINT, FREIGHT_TERM, SHIP_VIA, SHIP_PARTIAL, GSA_INDICATOR — Decoded shipping and trade terms used on iProcurement customer panels.
- NET_WORTH, NUM_OF_EMPLOYEES, POTENTIAL_REVENUE_CURR_FY, POTENTIAL_REVENUE_NEXT_FY, YEAR_ESTABLISHED — Profile and financial attributes.
- DO_NOT_MAIL_FLAG, MISSION_STATEMENT, URL — Profile metadata exposed for display.
Common Use Cases and Queries
The view is typically queried to present or export a customer or prospect profile, and to filter records by prospect designation. Because the decoded prospect indicator is embedded in a column rather than a lookup join, queries must reference the correct column name for the desired form.
Listing customer and prospect profiles with decoded values:
SELECT customer_id, customer_name, customer_prospect_code, status, customer_type FROM icx_panel_customer_v;
Isolating prospects using the raw code column:
SELECT customer_id, customer_name, customer_code FROM icx_panel_customer_v WHERE customer_code = 'P';
Case-insensitive name search using the uppercase column:
SELECT customer_id, customer_name FROM icx_panel_customer_v WHERE customer_name_upper LIKE 'ACME%';
Joining back to Receivables for site-level detail:
SELECT v.customer_name, v.customer_prospect_code, s.site_use_id FROM icx_panel_customer_v v, ra_site_uses_all s WHERE s.customer_id = v.customer_id;
Because GET_AR_CODE executes per row, large extracts may incur performance overhead; restricting the result set and avoiding unnecessary selection of decoded columns is advisable. Organizations should verify view availability in their specific 12.1.1 or 12.2.2 environment, given the documented "not implemented" status.
-
View: ICX_PANEL_CUSTOMER_V
12.1.1
product: ICX - Oracle iProcurement , description: Customer Profile View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_PANEL_CUSTOMER_V
12.2.2
product: ICX - Oracle iProcurement , description: Customer Profile View , implementation_dba_data: Not implemented in this database ,
-
VIEW: IMC.IMC_CSV_INTERFACE_FIELDS#
12.2.2
-
VIEW: AMS.AMS_DM_GEN_STG#
12.2.2
-
VIEW: APPS.UMX_ORGANIZATION_PVT_V
12.1.1
-
VIEW: APPS.AMS_LT_PERSON_DETAILS_V
12.2.2
-
VIEW: APPS.UMX_ORGANIZATION_PVT_V
12.2.2
-
VIEW: AR.RA_ADDRESSES_ALL#
12.2.2
-
View: AMS_LT_PERSON_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_PERSON_DETAILS_V, object_name:AMS_LT_PERSON_DETAILS_V, status:VALID, product: AMS - Marketing , description: Data Source view to get information about b2c contacts , implementation_dba_data: APPS.AMS_LT_PERSON_DETAILS_V ,
-
View: UMX_ORGANIZATION_PVT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.UMX_ORGANIZATION_PVT_V, object_name:UMX_ORGANIZATION_PVT_V, status:VALID, product: FND - Application Object Library , description: Private view used by UMX , implementation_dba_data: APPS.UMX_ORGANIZATION_PVT_V ,
-
VIEW: APPS.AMS_LT_PERSON_DETAILS_V
12.1.1
-
View: UMX_ORGANIZATION_PVT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.UMX_ORGANIZATION_PVT_V, object_name:UMX_ORGANIZATION_PVT_V, status:VALID, product: FND - Application Object Library , description: Private view used by UMX , implementation_dba_data: APPS.UMX_ORGANIZATION_PVT_V ,
-
View: AMS_LT_PERSON_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_PERSON_DETAILS_V, object_name:AMS_LT_PERSON_DETAILS_V, status:VALID, product: AMS - Marketing , description: Data Source view to get information about b2c contacts , implementation_dba_data: APPS.AMS_LT_PERSON_DETAILS_V ,
-
VIEW: AR.RA_CUSTOMERS#
12.2.2
-
VIEW: AR.HZ_PARTIES#
12.2.2
-
View: ICX_RA_CUSTOMERS_V
12.1.1
product: ICX - Oracle iProcurement , description: Customer View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_RA_CUSTOMERS_V
12.2.2
product: ICX - Oracle iProcurement , description: Customer View , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMS_ORGANIZATION_V
12.1.1
-
VIEW: AR.HZ_IMP_PARTIES_INT#
12.2.2
-
VIEW: APPS.AMS_P_ORGANIZATION_V
12.1.1
-
VIEW: APPS.AMS_ORGANIZATION_V
12.2.2
-
VIEW: APPS.AMS_P_ORGANIZATION_V
12.2.2
-
VIEW: APPS.IEX_LM_REL_QUICK_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_LM_REL_QUICK_V, status:VALID,
-
View: AR_CUSTOMERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMERS_ALL_V, object_name:AR_CUSTOMERS_ALL_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMERS_ALL_V ,
-
VIEW: AMS.AMS_DM_PARTY_DETAILS#
12.2.2
-
View: AMS_ORGANIZATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORGANIZATION_V, object_name:AMS_ORGANIZATION_V, status:VALID, product: AMS - Marketing , description: This View returns all entries from the HZ_PARTIES table which have a party_type of ORGANIZATION. Used for list generation. , implementation_dba_data: APPS.AMS_ORGANIZATION_V ,
-
View: AMS_ORGANIZATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ORGANIZATION_V, object_name:AMS_ORGANIZATION_V, status:VALID, product: AMS - Marketing , description: This View returns all entries from the HZ_PARTIES table which have a party_type of ORGANIZATION. Used for list generation. , implementation_dba_data: APPS.AMS_ORGANIZATION_V ,
-
VIEW: APPS.JTF_HZ_ORGANIZATION_PROFILES_V
12.2.2
-
VIEW: APPS.JTF_HZ_ORGANIZATION_PROFILES_V
12.1.1
-
View: AR_CUSTOMERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMERS_ALL_V, object_name:AR_CUSTOMERS_ALL_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMERS_ALL_V ,
-
View: AR_CUSTOMERS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMERS_ACTIVE_V, object_name:AR_CUSTOMERS_ACTIVE_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMERS_ACTIVE_V ,
-
View: AMS_P_ORGANIZATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_ORGANIZATION_V, object_name:AMS_P_ORGANIZATION_V, status:VALID, product: AMS - Marketing , description: This View returns all entries from the HZ_PARTIES table which have a party_type of ORGANIZATION. Used for list generation. , implementation_dba_data: APPS.AMS_P_ORGANIZATION_V ,
-
View: AR_CUSTOMERS_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMERS_ACTIVE_V, object_name:AR_CUSTOMERS_ACTIVE_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMERS_ACTIVE_V ,
-
View: AMS_P_ORGANIZATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_ORGANIZATION_V, object_name:AMS_P_ORGANIZATION_V, status:VALID, product: AMS - Marketing , description: This View returns all entries from the HZ_PARTIES table which have a party_type of ORGANIZATION. Used for list generation. , implementation_dba_data: APPS.AMS_P_ORGANIZATION_V ,
-
VIEW: APPS.IEX_LM_REL_QUICK_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_LM_REL_QUICK_V, status:VALID,
-
VIEW: APPS.AST_LM_REL_FUZZY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_FUZZY_V, object_name:AST_LM_REL_FUZZY_V, status:VALID,
-
View: RA_ADDRESSES
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMS_LT_PERSON_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_PERSON_DETAILS_V, object_name:AMS_LT_PERSON_DETAILS_V, status:VALID,
-
VIEW: APPS.ASF_ORGANIZATIONS_QF_FUZZY_V
12.2.2
owner:APPS, object_type:VIEW, object_name:ASF_ORGANIZATIONS_QF_FUZZY_V, status:VALID,
-
VIEW: APPS.ASF_ORGANIZATIONS_QF_FUZZY_V
12.1.1
owner:APPS, object_type:VIEW, object_name:ASF_ORGANIZATIONS_QF_FUZZY_V, status:VALID,
-
VIEW: APPS.AST_LM_REL_FUZZYCNT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_FUZZYCNT_V, object_name:AST_LM_REL_FUZZYCNT_V, status:VALID,
-
View: RA_ADDRESSES_MORG
12.1.1
product: AR - Receivables , description: Customer address information , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AST_LM_REL_FUZZYCNT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_FUZZYCNT_V, object_name:AST_LM_REL_FUZZYCNT_V, status:VALID,
-
View: JTF_HZ_ORGANIZATION_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_HZ_ORGANIZATION_PROFILES_V, object_name:JTF_HZ_ORGANIZATION_PROFILES_V, status:VALID, product: JTF - CRM Foundation , description: JTF_HZ_ORGANIZATION_PROFILES_V retrieves information about people as contacts for organizations. The table includes information about the person in the context of the organization such as their job title or rank. , implementation_dba_data: APPS.JTF_HZ_ORGANIZATION_PROFILES_V ,
-
VIEW: APPS.AST_LM_REL_QUICK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_QUICK_V, object_name:AST_LM_REL_QUICK_V, status:VALID,
-
VIEW: APPS.AST_LM_REL_QUICK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_QUICK_V, object_name:AST_LM_REL_QUICK_V, status:VALID,
-
View: RA_ADDRESSES_MORG
12.2.2
product: AR - Receivables , description: Customer address information , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AST_LM_REL_FUZZY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_FUZZY_V, object_name:AST_LM_REL_FUZZY_V, status:VALID,
-
View: JTF_HZ_ORGANIZATION_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_HZ_ORGANIZATION_PROFILES_V, object_name:JTF_HZ_ORGANIZATION_PROFILES_V, status:VALID, product: JTF - CRM Foundation , description: JTF_HZ_ORGANIZATION_PROFILES_V retrieves information about people as contacts for organizations. The table includes information about the person in the context of the organization such as their job title or rank. , implementation_dba_data: APPS.JTF_HZ_ORGANIZATION_PROFILES_V ,
-
VIEW: APPS.AMS_LT_PERSON_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_PERSON_DETAILS_V, object_name:AMS_LT_PERSON_DETAILS_V, status:VALID,