Search Results gr_property_values_tl
Overview
The GR_PROPERTY_VALUES_TL table is a core data validation and translation table within the Oracle E-Business Suite Process Manufacturing Regulatory Management (GR) module. It serves as the master repository for the allowable values, their descriptive meanings, and translated descriptions for properties defined within the regulatory framework. Its primary role is to enforce data integrity by providing a controlled list of valid entries for user-defined or system-defined properties, such as hazard classifications or regulatory flags, ensuring consistency in regulatory reporting and substance management across multilingual implementations.
Key Information Stored
The table stores the language-specific descriptions for predefined property values. Its structure is defined by a composite primary key and supports multilingual data through the Translation Layer (TL) convention. Key columns include:
- PROPERTY_ID: Foreign key to GR_PROPERTIES_B, identifying the specific property for which this value is valid.
- VALUE: The stored code or abbreviation for the property value (e.g., 'N', 'P', 'PP').
- LANGUAGE: The language code (e.g., 'US', 'F') for the translated description, referencing FND_LANGUAGES.
- DESCRIPTION: The translated, user-facing description of the value for the specified LANGUAGE.
- MEANING: A concise explanation of the value's significance, often used in lists of values (LOVs).
- SOURCE_LANG: The original language in which the data was entered, also referencing FND_LANGUAGES.
Common Use Cases and Queries
This table is central to generating accurate lists of values (LOVs) in regulatory forms and validating data imports. A typical use case involves populating a LOV for a "Marine Pollutant" property field. The following query retrieves all valid, translated values for a specific property:
SELECT gv.value, gv.meaning, gv.description
FROM gr_property_values_tl gv
WHERE gv.property_id = (SELECT property_id FROM gr_properties_b WHERE property_name = 'MARINE_POLLUTANT')
AND gv.language = USERENV('LANG')
ORDER BY gv.value;
For reporting, it is commonly joined to GR_PROPERTIES_B to include property context, and to transactional tables like GR_ITEM_PROPERTIES to decode stored value codes into human-readable descriptions for regulatory compliance reports.
Related Objects
The table maintains strict referential integrity through documented foreign key relationships. Key related objects include:
- GR_PROPERTIES_B (Table): The base table defining the property itself. Joined via
GR_PROPERTY_VALUES_TL.PROPERTY_ID = GR_PROPERTIES_B.PROPERTY_ID. - FND_LANGUAGES (Table): The application standard languages table. Referenced twice: for the
LANGUAGEcolumn and theSOURCE_LANGcolumn. - GR_ITEM_PROPERTIES / Similar Transactional Tables: While not listed in the provided FKs, child tables storing actual property assignments for items or substances will reference the allowed VALUE codes defined in this table, using PROPERTY_ID and VALUE.
-
Table: GR_PROPERTY_VALUES_TL
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PROPERTY_VALUES_TL, object_name:GR_PROPERTY_VALUES_TL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Description, Value, and Meaning used to validate the data entered for the property. For example, Marine Pollutants can have values of N (Not a Pollutant), P (Marine Pollutant), PP (Severe Pollutant), and U (Unknown). , implementation_dba_data: GR.GR_PROPERTY_VALUES_TL ,
-
Table: GR_PROPERTY_VALUES_TL
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PROPERTY_VALUES_TL, object_name:GR_PROPERTY_VALUES_TL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Description, Value, and Meaning used to validate the data entered for the property. For example, Marine Pollutants can have values of N (Not a Pollutant), P (Marine Pollutant), PP (Severe Pollutant), and U (Unknown). , implementation_dba_data: GR.GR_PROPERTY_VALUES_TL ,
-
Table: GR_PROPERTIES_B
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PROPERTIES_B, object_name:GR_PROPERTIES_B, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Property Code and Indicator for the label attributes. A label can have several Property Codes , implementation_dba_data: GR.GR_PROPERTIES_B ,
-
Table: GR_PROPERTIES_B
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PROPERTIES_B, object_name:GR_PROPERTIES_B, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Property Code and Indicator for the label attributes. A label can have several Property Codes , implementation_dba_data: GR.GR_PROPERTIES_B ,
-
View: GR_PROPERTY_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_PROPERTY_VAL_V, object_name:GR_PROPERTY_VAL_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows for the property values table , implementation_dba_data: APPS.GR_PROPERTY_VAL_V ,
-
View: GR_PROPERTY_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_PROPERTY_VAL_V, object_name:GR_PROPERTY_VAL_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows for the property values table , implementation_dba_data: APPS.GR_PROPERTY_VAL_V ,
-
View: GR_OTHER_PROPERTY_XML
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_OTHER_PROPERTY_XML, object_name:GR_OTHER_PROPERTY_XML, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View for Inventory Item and its associated Other Physical Properties details , implementation_dba_data: APPS.GR_OTHER_PROPERTY_XML ,
-
View: GR_OTHER_PROPERTY_XML
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_OTHER_PROPERTY_XML, object_name:GR_OTHER_PROPERTY_XML, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View for Inventory Item and its associated Other Physical Properties details , implementation_dba_data: APPS.GR_OTHER_PROPERTY_XML ,
-
View: GR_PHYSICAL_PROPERTY_XML
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_PHYSICAL_PROPERTY_XML, object_name:GR_PHYSICAL_PROPERTY_XML, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View for Inventory Item and its associated Physical Properties details , implementation_dba_data: APPS.GR_PHYSICAL_PROPERTY_XML ,
-
View: GR_PHYSICAL_PROPERTY_XML
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_PHYSICAL_PROPERTY_XML, object_name:GR_PHYSICAL_PROPERTY_XML, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View for Inventory Item and its associated Physical Properties details , implementation_dba_data: APPS.GR_PHYSICAL_PROPERTY_XML ,