DBA Data[Home] [Help]

APPS.PER_QAT_DEL dependencies on PER_QUALIFICATIONS_TL

Line 62: -- Delete the per_qualifications_tl row.

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

Line 64: delete from per_qualifications_tl

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

Line 195: (p_module_name => 'PER_QUALIFICATIONS_TL'

191: --
192: when hr_api.cannot_find_prog_unit then
193: --
194: hr_api.cannot_find_prog_unit_error
195: (p_module_name => 'PER_QUALIFICATIONS_TL'
196: ,p_hook_type => 'AD');
197: --
198: end;
199: --

Line 289: from per_qualifications_tl qat

285: -- Cursor to obtain all the translation rows.
286: --
287: cursor csr_del_langs is
288: select qat.language
289: from per_qualifications_tl qat
290: where qat.qualification_id = p_qualification_id;
291: --
292: l_proc varchar2(72) := g_package||'del_tl';
293: --