DBA Data[Home] [Help]

APPS.PQH_ATL_INS dependencies on PQH_ATTRIBUTES_TL

Line 56: -- Insert the row into: pqh_attributes_tl

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

Line 58: insert into pqh_attributes_tl

54: --
55: --
56: -- Insert the row into: pqh_attributes_tl
57: --
58: insert into pqh_attributes_tl
59: ( attribute_id,
60: attribute_name,
61: language,
62: source_lang

Line 200: (p_module_name => 'pqh_attributes_tl'

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

Line 295: from pqh_attributes_tl atl

291: select l.language_code
292: from fnd_languages l
293: where l.installed_flag in ('I','B')
294: and not exists (select null
295: from pqh_attributes_tl atl
296: where atl.attribute_id = p_attribute_id
297: and atl.language = l.language_code );
298: --
299: l_proc varchar2(72) := g_package||'ins_tl';