DBA Data[Home] [Help]

APPS.HR_DTT_DEL dependencies on HR_DOCUMENT_TYPES_TL

Line 56: -- Delete the hr_document_types_tl row.

52: hr_utility.set_location('Entering:'||l_proc, 5);
53: --
54: --
55: --
56: -- Delete the hr_document_types_tl row.
57: --
58: delete from hr_document_types_tl
59: where document_type_id = p_rec.document_type_id
60: and language = p_rec.language;

Line 58: delete from hr_document_types_tl

54: --
55: --
56: -- Delete the hr_document_types_tl row.
57: --
58: delete from hr_document_types_tl
59: where document_type_id = p_rec.document_type_id
60: and language = p_rec.language;
61: --
62: --

Line 177: (p_module_name => 'HR_DOCUMENT_TYPES_TL'

173: --
174: when hr_api.cannot_find_prog_unit then
175: --
176: hr_api.cannot_find_prog_unit_error
177: (p_module_name => 'HR_DOCUMENT_TYPES_TL'
178: ,p_hook_type => 'AD');
179: --
180: end;
181: --

Line 272: from hr_document_types_tl dtt

268: -- Cursor to obtain all the translation rows.
269: --
270: cursor csr_del_langs is
271: select dtt.language
272: from hr_document_types_tl dtt
273: where dtt.document_type_id = p_document_type_id;
274: --
275: l_proc varchar2(72) := g_package||'del_tl';
276: --