Search Results un_number_id
Overview
The PO_UN_NUMBERS_TL table is a core translation table within the Oracle E-Business Suite Purchasing (PO) module. It stores translated descriptions for United Nations (UN) numbers, which are standardized numerical identifiers for hazardous substances and articles in international transport. This table enables the EBS application to present UN number descriptions in the language of the user, supporting global deployments. Its role is to provide a localized reference for the hazardous goods classification system used in procurement and shipping documentation, ensuring regulatory compliance and clear communication across multilingual environments.
Key Information Stored
The table's structure is designed to support multilingual content with a unique key combining a substance identifier and a language code. The primary columns, as defined by the documented primary and unique keys, are:
- UN_NUMBER_ID: The unique identifier for the UN number record, serving as the foreign key link to the base data table (e.g., PO_UN_NUMBERS_B).
- UN_NUMBER: The standardized numerical code (e.g., 1203 for Motor spirit or Gasoline).
- DESCRIPTION: The translated textual description of the hazardous substance or article corresponding to the UN_NUMBER.
- LANGUAGE: The ISO code for the language of the translated DESCRIPTION (e.g., 'US' for American English).
The table's primary key constraint (PO_UN_NUMBERS_TL_PK) is on UN_NUMBER_ID and LANGUAGE, ensuring one translation per language per ID. A unique key constraint (PO_UN_NUMBERS_TL_UK1) on UN_NUMBER, DESCRIPTION, and LANGUAGE ensures data integrity for the translated values themselves.
Common Use Cases and Queries
This table is primarily accessed for generating localized reports, user interface displays, and compliance documents. A common scenario is retrieving the description of a specific UN number for a user session's language within a shipping or purchasing document. Sample SQL to achieve this involves joining the translation table with its base table, filtered by the session language.
Sample Query: To fetch all UN numbers and their descriptions for a specific language (e.g., French 'F'):
SELECT b.un_number, tl.description
FROM po_un_numbers_b b,
po_un_numbers_tl tl
WHERE b.un_number_id = tl.un_number_id
AND tl.language = USERENV('LANG')
ORDER BY b.un_number;
Reporting use cases include creating multi-language safety data sheets, hazardous material manifests, and supplier communication regarding regulated goods.
Related Objects
PO_UN_NUMBERS_TL is intrinsically linked to other Purchasing tables. Its most critical relationship is with the base table PO_UN_NUMBERS_B, which holds the language-independent UN number data. The UN_NUMBER_ID column is the foreign key to this base table. This translation table is also referenced by any EBS entity that requires a localized UN number description, such as items classified as hazardous (via MTL_SYSTEM_ITEMS_B), purchase order lines, and shipping transaction interfaces. The data is typically accessed via public APIs or standard EBS forms rather than through direct DML on the table.
-
Table: PO_UN_NUMBERS_TL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_UN_NUMBERS_TL, object_name:PO_UN_NUMBERS_TL, status:VALID, product: PO - Purchasing , description: Translated United Nations numbers , implementation_dba_data: PO.PO_UN_NUMBERS_TL ,
-
Table: PO_UN_NUMBERS_TL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_UN_NUMBERS_TL, object_name:PO_UN_NUMBERS_TL, status:VALID, product: PO - Purchasing , description: Translated United Nations numbers , implementation_dba_data: PO.PO_UN_NUMBERS_TL ,
-
View: POBV_UN_NUMBERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_UN_NUMBERS, object_name:POBV_UN_NUMBERS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_UN_NUMBERS ,
-
View: POBV_UN_NUMBERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_UN_NUMBERS, object_name:POBV_UN_NUMBERS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_UN_NUMBERS ,
-
View: POFV_UN_NUMBERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_UN_NUMBERS, object_name:POFV_UN_NUMBERS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_UN_NUMBERS ,
-
Table: PO_UN_NUMBERS_B
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_UN_NUMBERS_B, object_name:PO_UN_NUMBERS_B, status:VALID, product: PO - Purchasing , description: United Nations numbers , implementation_dba_data: PO.PO_UN_NUMBERS_B ,
-
Table: PO_UN_NUMBERS_B
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_UN_NUMBERS_B, object_name:PO_UN_NUMBERS_B, status:VALID, product: PO - Purchasing , description: United Nations numbers , implementation_dba_data: PO.PO_UN_NUMBERS_B ,
-
View: POFV_UN_NUMBERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_UN_NUMBERS, object_name:POFV_UN_NUMBERS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_UN_NUMBERS ,
-
View: PO_UN_NUMBERS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_UN_NUMBERS_VAL_V, object_name:PO_UN_NUMBERS_VAL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_UN_NUMBERS_VAL_V ,
-
View: PO_UN_NUMBERS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_UN_NUMBERS_VAL_V, object_name:PO_UN_NUMBERS_VAL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_UN_NUMBERS_VAL_V ,
-
View: PO_UN_NUMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_UN_NUMBERS_V, object_name:PO_UN_NUMBERS_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_UN_NUMBERS_V ,
-
View: PO_LINES_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_PRINT, object_name:PO_LINES_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LINES_PRINT ,
-
View: PO_LINES_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_PRINT, object_name:PO_LINES_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LINES_PRINT ,
-
View: POBV_RFQ_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_RFQ_LINES, object_name:POBV_RFQ_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_RFQ_LINES ,
-
View: PO_UN_NUMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_UN_NUMBERS_V, object_name:PO_UN_NUMBERS_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_UN_NUMBERS_V ,
-
View: PO_UN_NUMBERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_UN_NUMBERS_VL, object_name:PO_UN_NUMBERS_VL, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_UN_NUMBERS_VL ,
-
View: POBV_RFQ_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_RFQ_LINES, object_name:POBV_RFQ_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_RFQ_LINES ,
-
View: PO_UN_NUMBERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_UN_NUMBERS_VL, object_name:PO_UN_NUMBERS_VL, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_UN_NUMBERS_VL ,
-
View: POBV_QUOTATION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_QUOTATION_LINES, object_name:POBV_QUOTATION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_QUOTATION_LINES ,
-
View: POBV_QUOTATION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_QUOTATION_LINES, object_name:POBV_QUOTATION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_QUOTATION_LINES ,
-
View: PO_LINES_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_TRX_V, object_name:PO_LINES_TRX_V, status:VALID, product: PO - Purchasing , description: View on po_lines table. , implementation_dba_data: APPS.PO_LINES_TRX_V ,
-
View: POBV_PLAN_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PLAN_PO_LINES, object_name:POBV_PLAN_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PLAN_PO_LINES ,
-
View: POBV_PLAN_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PLAN_PO_LINES, object_name:POBV_PLAN_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PLAN_PO_LINES ,
-
View: PO_OWNED_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_OWNED_LINES, object_name:PO_OWNED_LINES, status:VALID, product: PO - Purchasing , description: Security view for owned purchase order lines , implementation_dba_data: APPS.PO_OWNED_LINES ,
-
View: PO_OWNED_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_OWNED_LINES, object_name:PO_OWNED_LINES, status:VALID, product: PO - Purchasing , description: Security view for owned purchase order lines , implementation_dba_data: APPS.PO_OWNED_LINES ,
-
View: POFV_RFQ_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_RFQ_LINES, object_name:POFV_RFQ_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_RFQ_LINES ,
-
View: POBV_STD_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_STD_PO_LINES, object_name:POBV_STD_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_STD_PO_LINES ,
-
View: RCV_VRC_TXS_CUST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_CUST_V, object_name:RCV_VRC_TXS_CUST_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_CUST_V ,
-
View: RCV_VRC_TXS_INT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_INT_V, object_name:RCV_VRC_TXS_INT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_INT_V ,
-
View: POFV_RFQ_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_RFQ_LINES, object_name:POFV_RFQ_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_RFQ_LINES ,
-
View: POBV_STD_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_STD_PO_LINES, object_name:POBV_STD_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_STD_PO_LINES ,
-
View: RCV_VRC_TXS_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_INT_V, object_name:RCV_VRC_TXS_INT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_INT_V ,
-
View: POBV_BKT_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_BKT_PO_LINES, object_name:POBV_BKT_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_BKT_PO_LINES ,
-
View: POBV_BKT_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_BKT_PO_LINES, object_name:POBV_BKT_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_BKT_PO_LINES ,
-
View: RCV_VRC_TXS_CUST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_CUST_V, object_name:RCV_VRC_TXS_CUST_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_CUST_V ,
-
View: POBV_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PO_LINES, object_name:POBV_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PO_LINES ,
-
View: PO_OWNED_REQUISITION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_OWNED_REQUISITION_LINES, object_name:PO_OWNED_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: Security view for owned requisition lines , implementation_dba_data: APPS.PO_OWNED_REQUISITION_LINES ,
-
View: POS_PO_RFQ_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_RFQ_LINES_V, object_name:POS_PO_RFQ_LINES_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PO_RFQ_LINES_V ,
-
View: POFV_QUOTATION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_QUOTATION_LINES, object_name:POFV_QUOTATION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_QUOTATION_LINES ,
-
View: POS_PO_RFQ_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_RFQ_LINES_V POS.POS_PO_RFQ_LINES_V, object_name:POS_PO_RFQ_LINES_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PO_RFQ_LINES_V ,
-
View: POBV_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PO_LINES, object_name:POBV_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PO_LINES ,
-
View: PO_OWNED_REQUISITION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_OWNED_REQUISITION_LINES, object_name:PO_OWNED_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: Security view for owned requisition lines , implementation_dba_data: APPS.PO_OWNED_REQUISITION_LINES ,
-
View: PO_LINES_RFQQT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_RFQQT_V, object_name:PO_LINES_RFQQT_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LINES_RFQQT_V ,
-
View: PO_LINES_RFQQT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_RFQQT_V, object_name:PO_LINES_RFQQT_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LINES_RFQQT_V ,
-
View: POFV_QUOTATION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_QUOTATION_LINES, object_name:POFV_QUOTATION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_QUOTATION_LINES ,
-
View: PO_ITEM_SOURCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ITEM_SOURCES, object_name:PO_ITEM_SOURCES, status:VALID, product: PO - Purchasing , description: Sources for an item , implementation_dba_data: APPS.PO_ITEM_SOURCES ,
-
View: PO_ITEM_SOURCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ITEM_SOURCES, object_name:PO_ITEM_SOURCES, status:VALID, product: PO - Purchasing , description: Sources for an item , implementation_dba_data: APPS.PO_ITEM_SOURCES ,
-
View: RCV_VIEW_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VIEW_INTERFACE_V, object_name:RCV_VIEW_INTERFACE_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_VIEW_INTERFACE_V ,
-
View: RCV_VIEW_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VIEW_INTERFACE_V, object_name:RCV_VIEW_INTERFACE_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_VIEW_INTERFACE_V ,
-
View: POFV_PLAN_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PLAN_PO_LINES, object_name:POFV_PLAN_PO_LINES, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POFV_PLAN_PO_LINES ,