DBA Data[Home] [Help]

APPS.HR_DTT_INS dependencies on HR_DOCUMENT_TYPES_TL

Line 59: -- Insert the row into: hr_document_types_tl

55: --
56: --
57: --
58: --
59: -- Insert the row into: hr_document_types_tl
60: --
61: insert into hr_document_types_tl
62: (document_type_id
63: ,language

Line 61: insert into hr_document_types_tl

57: --
58: --
59: -- Insert the row into: hr_document_types_tl
60: --
61: insert into hr_document_types_tl
62: (document_type_id
63: ,language
64: ,source_language
65: ,document_type

Line 217: (p_module_name => 'HR_DOCUMENT_TYPES_TL'

213: --
214: when hr_api.cannot_find_prog_unit then
215: --
216: hr_api.cannot_find_prog_unit_error
217: (p_module_name => 'HR_DOCUMENT_TYPES_TL'
218: ,p_hook_type => 'AI');
219: --
220: end;
221: --

Line 348: from hr_document_types_tl dtt

344: select l.language_code
345: from fnd_languages l
346: where l.installed_flag in ('I','B')
347: and not exists (select null
348: from hr_document_types_tl dtt
349: where dtt.document_type_id = p_document_type_id
350: and dtt.language = l.language_code);
351: --
352: l_proc varchar2(72) := g_package || 'ins_tl';