DBA Data[Home] [Help]

APPS.PO_GML_CONV_MIG dependencies on GR_PROPERTY_VALUES_TL

Line 184: FROM gr_property_values_tl

180: /* ------------------ CURSORS ---------------------- */
181: /* Cursor used retrieve the hazard classification codes */
182: CURSOR c_get_hazard_classes IS
183: SELECT *
184: FROM gr_property_values_tl
185: WHERE language = userenv('LANG') and
186: property_id = 'UNCLSS';
187: l_hazard_class_rec c_get_hazard_classes%ROWTYPE;
188:

Line 205: FROM gr_property_values_tl

201:
202: /* Cursor used to retrieve translated descriptions for installed languages */
203: CURSOR c_get_translated (v_hazard_class VARCHAR2) IS
204: SELECT *
205: FROM gr_property_values_tl
206: WHERE language in (SELECT language_code
207: FROM fnd_languages
208: WHERE language_code <> userenv('LANG')
209: AND installed_flag in ('I','B'))