DBA Data[Home] [Help]

APPS.HR_DTT_UPD dependencies on HR_DOCUMENT_TYPES_TL

Line 60: -- Update the hr_document_types_tl Row

56: --
57: --
58: --
59: --
60: -- Update the hr_document_types_tl Row
61: --
62: update hr_document_types_tl
63: set
64: document_type_id = p_rec.document_type_id

Line 62: update hr_document_types_tl

58: --
59: --
60: -- Update the hr_document_types_tl Row
61: --
62: update hr_document_types_tl
63: set
64: document_type_id = p_rec.document_type_id
65: ,language = p_rec.language
66: ,source_language = p_rec.source_language

Line 207: (p_module_name => 'HR_DOCUMENT_TYPES_TL'

203: --
204: when hr_api.cannot_find_prog_unit then
205: --
206: hr_api.cannot_find_prog_unit_error
207: (p_module_name => 'HR_DOCUMENT_TYPES_TL'
208: ,p_hook_type => 'AU');
209: --
210: end;
211: --

Line 392: from hr_document_types_tl dtt

388: -- source_lang match the specified language.
389: --
390: cursor csr_upd_langs is
391: select dtt.language
392: from hr_document_types_tl dtt
393: where dtt.document_type_id = p_document_type_id
394: and p_language_code in (dtt.language
395: ,dtt.source_language);
396: --