DBA Data[Home] [Help]

APPS.PQH_RTL_INS dependencies on PQH_RULE_SETS_TL

Line 56: -- Insert the row into: pqh_rule_sets_tl

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

Line 58: insert into pqh_rule_sets_tl

54: --
55: --
56: -- Insert the row into: pqh_rule_sets_tl
57: --
58: insert into pqh_rule_sets_tl
59: ( rule_set_id,
60: rule_set_name,
61: description,
62: language,

Line 204: (p_module_name => 'pqh_rule_sets_tl'

200: --
201: when hr_api.cannot_find_prog_unit then
202: --
203: hr_api.cannot_find_prog_unit_error
204: (p_module_name => 'pqh_rule_sets_tl'
205: ,p_hook_type => 'AI');
206: --
207: end;
208: --

Line 304: from pqh_rule_sets_tl rtl

300: select l.language_code
301: from fnd_languages l
302: where l.installed_flag in ('I','B')
303: and not exists (select null
304: from pqh_rule_sets_tl rtl
305: where rtl.rule_set_id = p_rule_set_id
306: and rtl.language = l.language_code );
307: --
308: l_proc varchar2(72) := g_package||'ins_tl';