DBA Data[Home] [Help]

APPS.PQH_TTL_INS dependencies on PQH_TEMPLATES_TL

Line 56: -- Insert the row into: pqh_templates_tl

52: hr_utility.set_location('Entering:'||l_proc, 5);
53: --
54: --
55: --
56: -- Insert the row into: pqh_templates_tl
57: --
58: insert into pqh_templates_tl
59: ( template_id,
60: template_name,

Line 58: insert into pqh_templates_tl

54: --
55: --
56: -- Insert the row into: pqh_templates_tl
57: --
58: insert into pqh_templates_tl
59: ( template_id,
60: template_name,
61: language,
62: source_lang

Line 201: (p_module_name => 'pqh_templates_tl'

197: --
198: when hr_api.cannot_find_prog_unit then
199: --
200: hr_api.cannot_find_prog_unit_error
201: (p_module_name => 'pqh_templates_tl'
202: ,p_hook_type => 'AI');
203: --
204: end;
205: --

Line 305: from pqh_templates_tl ttl

301: select l.language_code
302: from fnd_languages l
303: where l.installed_flag in ('I','B')
304: and not exists (select null
305: from pqh_templates_tl ttl
306: where ttl.template_id = p_template_id
307: and ttl.language = l.language_code );
308: --
309: l_proc varchar2(72) := g_package||'ins_tl';