DBA Data[Home] [Help]

APPS.OTA_CTL_INS dependencies on OTA_CERTIFICATIONS_TL

Line 65: -- Insert the row into: ota_certifications_tl

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

Line 67: insert into ota_certifications_tl

63: --
64: --
65: -- Insert the row into: ota_certifications_tl
66: --
67: insert into ota_certifications_tl
68: (certification_id
69: ,language
70: ,name
71: ,description

Line 244: (p_module_name => 'OTA_CERTIFICATIONS_TL'

240: --
241: when hr_api.cannot_find_prog_unit then
242: --
243: hr_api.cannot_find_prog_unit_error
244: (p_module_name => 'OTA_CERTIFICATIONS_TL'
245: ,p_hook_type => 'AI');
246: --
247: end;
248: --

Line 385: from ota_certifications_tl ctl

381: select l.language_code
382: from fnd_languages l
383: where l.installed_flag in ('I','B')
384: and not exists (select null
385: from ota_certifications_tl ctl
386: where ctl.certification_id = p_certification_id
387: and ctl.language = l.language_code);
388: --
389: l_proc varchar2(72) := g_package || 'ins_tl';