DBA Data[Home] [Help]

APPS.OTA_ONT_UPD dependencies on OTA_OFFERINGS_TL

Line 67: -- Update the ota_offerings_tl Row

63: --
64: --
65: --
66: --
67: -- Update the ota_offerings_tl Row
68: --
69:
70:
71: update ota_offerings_tl

Line 71: update ota_offerings_tl

67: -- Update the ota_offerings_tl Row
68: --
69:
70:
71: update ota_offerings_tl
72: set
73: offering_id = p_rec.offering_id
74: ,language = p_rec.language
75: ,name = p_rec.name

Line 220: (p_module_name => 'OTA_OFFERINGS_TL'

216: --
217: when hr_api.cannot_find_prog_unit then
218: --
219: hr_api.cannot_find_prog_unit_error
220: (p_module_name => 'OTA_OFFERINGS_TL'
221: ,p_hook_type => 'AU');
222: --
223: end;
224: --

Line 410: from ota_offerings_tl ont

406: -- source_lang match the specified language.
407: --
408: cursor csr_upd_langs is
409: select ont.language
410: from ota_offerings_tl ont
411: where ont.offering_id = p_offering_id
412: and p_language_code in (ont.language
413: ,ont.source_lang);
414: --