DBA Data[Home] [Help]

APPS.OTA_ENT_INS dependencies on OTA_EVENTS_TL

Line 65: -- Insert the row into: ota_events_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: ota_events_tl
66: --
67: insert into ota_events_tl
68: (event_id
69: ,language

Line 67: insert into ota_events_tl

63: --
64: --
65: -- Insert the row into: ota_events_tl
66: --
67: insert into ota_events_tl
68: (event_id
69: ,language
70: ,title
71: ,source_lang

Line 216: (p_module_name => 'OTA_EVENTS_TL'

212: --
213: when hr_api.cannot_find_prog_unit then
214: --
215: hr_api.cannot_find_prog_unit_error
216: (p_module_name => 'OTA_EVENTS_TL'
217: ,p_hook_type => 'AI');
218: --
219: end;
220: --

Line 335: from ota_events_tl ent

331: select l.language_code
332: from fnd_languages l
333: where l.installed_flag in ('I','B')
334: and not exists (select null
335: from ota_events_tl ent
336: where ent.event_id = p_event_id
337: and ent.language = l.language_code);
338: --
339: l_proc varchar2(72) := g_package || 'ins_tl';