DBA Data[Home] [Help]

APPS.PO_GML_CONV_MIG dependencies on PO_HAZARD_CLASSES_TL

Line 194: FROM po_hazard_classes_tl

190: CURSOR c_check_existence (v_hazard_class VARCHAR2) IS
191: SELECT 1
192: FROM sys.dual
193: WHERE EXISTS (SELECT 1
194: FROM po_hazard_classes_tl
195: WHERE hazard_class = v_hazard_class);
196:
197: /* Cursor used to retrieve the next sequence number */
198: CURSOR c_get_seq IS

Line 292: UPDATE po_hazard_classes_tl

288:
289: WHILE c_get_translated%FOUND LOOP
290:
291: /* Update the descriptions with the values from Regulatory */
292: UPDATE po_hazard_classes_tl
293: SET description = l_translated_rec.meaning,
294: source_lang = l_translated_rec.source_lang,
295: creation_date = l_translated_rec.creation_date,
296: created_by = l_translated_rec.created_by,