DBA Data[Home] [Help]

APPS.PER_CPL_INS dependencies on PER_COMPETENCES_TL

Line 65: -- Insert the row into: per_competences_tl

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

Line 67: insert into per_competences_tl

63: --
64: --
65: -- Insert the row into: per_competences_tl
66: --
67: insert into per_competences_tl
68: (competence_id
69: ,language
70: ,source_lang
71: ,name

Line 228: (p_module_name => 'PER_COMPETENCES_TL'

224: --
225: when hr_api.cannot_find_prog_unit then
226: --
227: hr_api.cannot_find_prog_unit_error
228: (p_module_name => 'PER_COMPETENCES_TL'
229: ,p_hook_type => 'AI');
230: --
231: end;
232: --

Line 355: from per_competences_tl cpl

351: select l.language_code
352: from fnd_languages l
353: where l.installed_flag in ('I','B')
354: and not exists (select null
355: from per_competences_tl cpl
356: where cpl.competence_id = p_competence_id
357: and cpl.language = l.language_code);
358: --
359: l_proc varchar2(72) := g_package || 'ins_tl';