DBA Data[Home] [Help]

APPS.PQH_CRL_INS dependencies on PQH_CRITERIA_RATE_DEFN_TL

Line 65: -- Insert the row into: pqh_criteria_rate_defn_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: pqh_criteria_rate_defn_tl
66: --
67: insert into pqh_criteria_rate_defn_tl
68: (criteria_rate_defn_id
69: ,name

Line 67: insert into pqh_criteria_rate_defn_tl

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

Line 216: (p_module_name => 'PQH_CRITERIA_RATE_DEFN_TL'

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

Line 334: from pqh_criteria_rate_defn_tl crl

330: select l.language_code
331: from fnd_languages l
332: where l.installed_flag in ('I','B')
333: and not exists (select null
334: from pqh_criteria_rate_defn_tl crl
335: where crl.criteria_rate_defn_id = p_criteria_rate_defn_id
336: and crl.language = l.language_code);
337: --
338: l_proc varchar2(72) := g_package || 'ins_tl';