DBA Data[Home] [Help]

APPS.PER_QTT_INS dependencies on PER_QUALIFICATION_TYPES_TL

Line 65: -- Insert the row into: per_qualification_types_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: per_qualification_types_tl
66: --
67: insert into per_qualification_types_tl
68: (qualification_type_id
69: ,language

Line 67: insert into per_qualification_types_tl

63: --
64: --
65: -- Insert the row into: per_qualification_types_tl
66: --
67: insert into per_qualification_types_tl
68: (qualification_type_id
69: ,language
70: ,source_lang
71: ,name

Line 214: (p_module_name => 'PER_QUALIFICATION_TYPES_TL'

210: --
211: when hr_api.cannot_find_prog_unit then
212: --
213: hr_api.cannot_find_prog_unit_error
214: (p_module_name => 'PER_QUALIFICATION_TYPES_TL'
215: ,p_hook_type => 'AI');
216: --
217: end;
218: --

Line 327: from per_qualification_types_tl qtt

323: select l.language_code
324: from fnd_languages l
325: where l.installed_flag in ('I','B')
326: and not exists (select null
327: from per_qualification_types_tl qtt
328: where qtt.qualification_type_id = p_qualification_type_id
329: and qtt.language = l.language_code);
330: --
331: l_proc varchar2(72) := g_package || 'ins_tl';