DBA Data[Home] [Help]

APPS.PER_CPL_DEL dependencies on PER_COMPETENCES_TL

Line 62: -- Delete the per_competences_tl row.

58: hr_utility.set_location('Entering:'||l_proc, 5);
59: --
60: --
61: --
62: -- Delete the per_competences_tl row.
63: --
64: delete from per_competences_tl
65: where competence_id = p_rec.competence_id
66: and language = p_rec.language;

Line 64: delete from per_competences_tl

60: --
61: --
62: -- Delete the per_competences_tl row.
63: --
64: delete from per_competences_tl
65: where competence_id = p_rec.competence_id
66: and language = p_rec.language;
67: --
68: --

Line 187: (p_module_name => 'PER_COMPETENCES_TL'

183: --
184: when hr_api.cannot_find_prog_unit then
185: --
186: hr_api.cannot_find_prog_unit_error
187: (p_module_name => 'PER_COMPETENCES_TL'
188: ,p_hook_type => 'AD');
189: --
190: end;
191: --

Line 282: from per_competences_tl cpl

278: -- Cursor to obtain all the translation rows.
279: --
280: cursor csr_del_langs is
281: select cpl.language
282: from per_competences_tl cpl
283: where cpl.competence_id = p_competence_id;
284: --
285: l_proc varchar2(72) := g_package||'del_tl';
286: --