DBA Data[Home] [Help]

APPS.OTA_ENT_UPD dependencies on OTA_EVENTS_TL

Line 66: -- Update the ota_events_tl Row

62: --
63: --
64: --
65: --
66: -- Update the ota_events_tl Row
67: --
68: update ota_events_tl
69: set
70: event_id = p_rec.event_id

Line 68: update ota_events_tl

64: --
65: --
66: -- Update the ota_events_tl Row
67: --
68: update ota_events_tl
69: set
70: event_id = p_rec.event_id
71: ,language = p_rec.language
72: ,title = p_rec.title

Line 210: (p_module_name => 'OTA_EVENTS_TL'

206: --
207: when hr_api.cannot_find_prog_unit then
208: --
209: hr_api.cannot_find_prog_unit_error
210: (p_module_name => 'OTA_EVENTS_TL'
211: ,p_hook_type => 'AU');
212: --
213: end;
214: --

Line 393: from ota_events_tl ent

389: -- source_lang match the specified language.
390: --
391: cursor csr_upd_langs is
392: select ent.language
393: from ota_events_tl ent
394: where ent.event_id = p_event_id
395: and p_language_code in (ent.language
396: ,ent.source_lang);
397: --