Search Results name_description
Overview
APPS.GR_ITEM_REPORT_V1 is a reporting view in Oracle E-Business Suite that consolidates item identifiers and their associated descriptive text into a single, uniform result set. It is not a stored table; it is a query definition whose output is materialized at runtime. The view is designed to present one row per item code paired with a single human-readable description column, regardless of whether the source item originates in the inventory master or in the Oracle Process Manufacturing (OPM) / Oracle Manufacturing item general tables. This makes it particularly valuable in EBS 12.1.1 and 12.2.2 environments where both the discrete inventory item master and the process manufacturing item tables coexist and must be reconciled for reporting, integration, and data extraction purposes.
The view answers the recurring question of how to obtain a unified item number and description list when item data is split across multiple schemas and tables. Because it standardizes the output column names as ITEM_NO and ITEM_DESC1, downstream reports, interfaces, and extracts can consume the result without knowing which underlying table supplied the record. The view is defined and owned by the APPS schema, which is the standard publishing schema for cross-module EBS objects.
Underlying Base Objects
The view metadata documents three referenced base objects, all exposed through APPS synonyms:
- IC_ITEM_MST (SYNONYM) — The inventory item master. This is the primary source for the first branch of the UNION ALL, supplying ITEM_NO and the native ITEM_DESC1 description.
- GR_ITEM_GENERAL (SYNONYM) — The OPM item general table, referenced by alias L. It supplies the item code (L.ITEM_CODE) and acts as the driving table for the second branch of the query.
- GR_MULTILINGUAL_NAME_TL (SYNONYM) — The multilingual name translation table, referenced by alias M. It provides the NAME_DESCRIPTION column used as the description output in the second branch.
The view is constructed as a UNION ALL of two SELECT statements. The first selects directly from IC_ITEM_MST. The second selects from GR_ITEM_GENERAL outer-joined to GR_MULTILINGUAL_NAME_TL, filtered by LABEL_CODE '11007' and by the session language via USERENV('LANG'), and excludes any item already present in IC_ITEM_MST through a NOT IN subquery. A final ORDER BY 1 sorts the combined result by item number. The outer-join syntax (+) ensures that items without a matching translation row are still returned.
Key Columns
- ITEM_NO — The item identifier. In the first branch it comes from IC_ITEM_MST.ITEM_NO; in the second it is aliased from GR_ITEM_GENERAL.ITEM_CODE. This column is the ordering key and the logical primary identifier of the view.
- ITEM_DESC1 — The item description. For inventory-master items it is the native description; for OPM items it is the NAME_DESCRIPTION drawn from the multilingual translation table, with LABEL_CODE '11007' and the current session language applied.
Note that the NAME_DESCRIPTION column referenced in the view text is exposed internally through the GR_MULTILINGUAL_NAME_TL alias M and renamed to ITEM_DESC1 in the projection. Consumers should therefore expect only these two columns from the view.
Common Use Cases and Queries
Typical uses include item validation extracts, cross-module reconciliation reports, and feeding item lists into interfaces or BI Publisher reports where a single description column is required regardless of source module.
- Retrieve all items and descriptions:
SELECT ITEM_NO, ITEM_DESC1 FROM APPS.GR_ITEM_REPORT_V1 ORDER BY ITEM_NO; - Search by description text:
SELECT ITEM_NO, ITEM_DESC1 FROM APPS.GR_ITEM_REPORT_V1 WHERE UPPER(ITEM_DESC1) LIKE '%VALVE%'; - Look up a single item:
SELECT ITEM_NO, ITEM_DESC1 FROM APPS.GR_ITEM_REPORT_V1 WHERE ITEM_NO = :item_no; - Count unified items across sources:
SELECT COUNT(*) FROM APPS.GR_ITEM_REPORT_V1;
Because the view applies language-sensitive filtering and a UNION ALL with subquery exclusion, performance depends on indexing of ITEM_CODE and ITEM_NO in the underlying tables. Reports should filter on ITEM_NO where possible rather than relying solely on description searches.
-
VIEW: APPS.GR_ITEM_REPORT_V1
12.1.1
-
VIEW: GR.GR_GENERIC_ML_NAME_TL#
12.2.2
-
VIEW: GR.GR_MULTILINGUAL_NAME_TL#
12.2.2
-
VIEW: APPS.GR_ITEM_GENERAL_MSDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_GENERAL_MSDS_V, object_name:GR_ITEM_GENERAL_MSDS_V, status:VALID,
-
VIEW: APPS.GR_ITEM_REPORT_V1
12.2.2
-
VIEW: APPS.GR_ITEM_GENERAL_MSDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_GENERAL_MSDS_V, object_name:GR_ITEM_GENERAL_MSDS_V, status:VALID,
-
VIEW: APPS.GR_ALL_ITEMS_V
12.2.2
-
VIEW: APPS.GR_ALL_ITEMS_V
12.1.1
-
VIEW: APPS.GR_GENERIC_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_GENERIC_ITEMS_VL, object_name:GR_GENERIC_ITEMS_VL, status:VALID,
-
VIEW: GR.GR_GENERIC_ML_NAME_TL#
12.2.2
owner:GR, object_type:VIEW, object_name:GR_GENERIC_ML_NAME_TL#, status:VALID,
-
VIEW: GR.GR_MULTILINGUAL_NAME_TL#
12.2.2
owner:GR, object_type:VIEW, object_name:GR_MULTILINGUAL_NAME_TL#, status:VALID,
-
View: GR_ITEM_GENERAL_MSDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_GENERAL_MSDS_V, object_name:GR_ITEM_GENERAL_MSDS_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains only the rows that reflect the MSDS name for the item in the users environment language , implementation_dba_data: APPS.GR_ITEM_GENERAL_MSDS_V ,
-
VIEW: APPS.GR_GENERIC_ML_NAME_TL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_GENERIC_ML_NAME_TL_V, object_name:GR_GENERIC_ML_NAME_TL_V, status:VALID,
-
View: GR_ITEM_REPORT_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_REPORT_V1, object_name:GR_ITEM_REPORT_V1, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View of valid Regulatory Items which can be used for Reports. , implementation_dba_data: APPS.GR_ITEM_REPORT_V1 ,
-
View: GR_ITEM_GENERAL_MSDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_GENERAL_MSDS_V, object_name:GR_ITEM_GENERAL_MSDS_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains only the rows that reflect the MSDS name for the item in the users environment language , implementation_dba_data: APPS.GR_ITEM_GENERAL_MSDS_V ,
-
VIEW: APPS.GR_MULTILINGUAL_NAME_TL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_MULTILINGUAL_NAME_TL_V, object_name:GR_MULTILINGUAL_NAME_TL_V, status:VALID,
-
VIEW: APPS.GR_MULTILINGUAL_NAME_TL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_MULTILINGUAL_NAME_TL_V, object_name:GR_MULTILINGUAL_NAME_TL_V, status:VALID,
-
APPS.GR_GENERIC_ML_NAME_TL_PKG SQL Statements
12.2.2
-
VIEW: APPS.GR_GENERIC_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_GENERIC_ITEMS_VL, object_name:GR_GENERIC_ITEMS_VL, status:VALID,
-
View: GR_ITEM_REPORT_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_REPORT_V1, object_name:GR_ITEM_REPORT_V1, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View of valid Regulatory Items which can be used for Reports. , implementation_dba_data: APPS.GR_ITEM_REPORT_V1 ,
-
View: GR_ALL_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ALL_ITEMS_V, object_name:GR_ALL_ITEMS_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View of ITEM CODE + DESCRIPTION , implementation_dba_data: APPS.GR_ALL_ITEMS_V ,
-
View: GR_ALL_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ALL_ITEMS_V, object_name:GR_ALL_ITEMS_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View of ITEM CODE + DESCRIPTION , implementation_dba_data: APPS.GR_ALL_ITEMS_V ,
-
VIEW: APPS.GR_GENERIC_ML_NAME_TL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_GENERIC_ML_NAME_TL_V, object_name:GR_GENERIC_ML_NAME_TL_V, status:VALID,
-
APPS.GR_GENERIC_ML_NAME_TL_PKG SQL Statements
12.1.1
-
APPS.GR_MULTILINGUAL_NAME_TL_PKG SQL Statements
12.1.1
-
APPS.GR_MULTILINGUAL_NAME_TL_PKG SQL Statements
12.2.2
-
View: GR_MULTILINGUAL_NAME_TL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_MULTILINGUAL_NAME_TL_V, object_name:GR_MULTILINGUAL_NAME_TL_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains all the rows for the table , implementation_dba_data: APPS.GR_MULTILINGUAL_NAME_TL_V ,
-
View: GR_MULTILINGUAL_NAME_TL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_MULTILINGUAL_NAME_TL_V, object_name:GR_MULTILINGUAL_NAME_TL_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains all the rows for the table , implementation_dba_data: APPS.GR_MULTILINGUAL_NAME_TL_V ,
-
View: GR_GENERIC_ML_NAME_TL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_GENERIC_ML_NAME_TL_V, object_name:GR_GENERIC_ML_NAME_TL_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows that have a language dependent name description for the generic item code where the language is equal to the user environment variable LANG. , implementation_dba_data: APPS.GR_GENERIC_ML_NAME_TL_V ,
-
View: GR_GENERIC_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_GENERIC_ITEMS_VL, object_name:GR_GENERIC_ITEMS_VL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows that have a language dependent description for the generic item code where the language is equal to the user environment variable LANG. , implementation_dba_data: APPS.GR_GENERIC_ITEMS_VL ,
-
View: GR_GENERIC_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_GENERIC_ITEMS_VL, object_name:GR_GENERIC_ITEMS_VL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows that have a language dependent description for the generic item code where the language is equal to the user environment variable LANG. , implementation_dba_data: APPS.GR_GENERIC_ITEMS_VL ,
-
View: GR_GENERIC_ML_NAME_TL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_GENERIC_ML_NAME_TL_V, object_name:GR_GENERIC_ML_NAME_TL_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows that have a language dependent name description for the generic item code where the language is equal to the user environment variable LANG. , implementation_dba_data: APPS.GR_GENERIC_ML_NAME_TL_V ,
-
TABLE: GR.GR_MULTILINGUAL_NAME_TL
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_MULTILINGUAL_NAME_TL, object_name:GR_MULTILINGUAL_NAME_TL, status:VALID,
-
TABLE: GR.GR_GENERIC_ML_NAME_TL
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_GENERIC_ML_NAME_TL, object_name:GR_GENERIC_ML_NAME_TL, status:VALID,
-
TABLE: GR.GR_GENERIC_ML_NAME_TL
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_GENERIC_ML_NAME_TL, object_name:GR_GENERIC_ML_NAME_TL, status:VALID,
-
TABLE: GR.GR_MULTILINGUAL_NAME_TL
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_MULTILINGUAL_NAME_TL, object_name:GR_MULTILINGUAL_NAME_TL, status:VALID,
-
PACKAGE BODY: APPS.GR_MULTILINGUAL_NAME_TL_PKG
12.2.2
-
PACKAGE BODY: APPS.GR_GENERIC_ML_NAME_TL_PKG
12.1.1
-
PACKAGE BODY: APPS.GR_MULTILINGUAL_NAME_TL_PKG
12.1.1
-
PACKAGE BODY: APPS.GR_GENERIC_ML_NAME_TL_PKG
12.2.2
-
APPS.INV_OPM_ITEM_MIGRATION SQL Statements
12.1.1
-
APPS.INV_OPM_ITEM_MIGRATION SQL Statements
12.2.2
-
APPS.GR_MULTILINGUAL_NAME_TL_PKG dependencies on GR_MULTILINGUAL_NAME_TL
12.2.2
-
APPS.GR_MULTILINGUAL_NAME_TL_PKG dependencies on GR_MULTILINGUAL_NAME_TL
12.1.1
-
APPS.INV_OPM_ITEM_MIGRATION dependencies on GR_MULTILINGUAL_NAME_TL
12.1.1
-
APPS.INV_OPM_ITEM_MIGRATION dependencies on GR_MULTILINGUAL_NAME_TL
12.2.2
-
APPS.GR_GENERIC_ML_NAME_TL_PKG dependencies on GR_GENERIC_ML_NAME_TL
12.1.1
-
APPS.GR_GENERIC_ML_NAME_TL_PKG dependencies on GR_GENERIC_ML_NAME_TL
12.2.2
-
eTRM - GR Tables and Views
12.1.1
description: GR XML mapping table ,
-
PACKAGE BODY: APPS.INV_OPM_ITEM_MIGRATION
12.1.1