DBA Data[Home] [Help]

APPS.PER_CNT_UPD dependencies on PER_RI_CONFIGURATIONS_TL

Line 66: -- Update the per_ri_configurations_tl Row

62: --
63: --
64: --
65: --
66: -- Update the per_ri_configurations_tl Row
67: --
68: update per_ri_configurations_tl
69: set
70: configuration_code = p_rec.configuration_code

Line 68: update per_ri_configurations_tl

64: --
65: --
66: -- Update the per_ri_configurations_tl Row
67: --
68: update per_ri_configurations_tl
69: set
70: configuration_code = p_rec.configuration_code
71: ,configuration_name = p_rec.configuration_name
72: ,configuration_description = p_rec.configuration_description

Line 215: (p_module_name => 'PER_RI_CONFIGURATIONS_TL'

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

Line 405: from per_ri_configurations_tl cnt

401: -- source_lang match the specified language.
402: --
403: cursor csr_upd_langs is
404: select cnt.language
405: from per_ri_configurations_tl cnt
406: where cnt.configuration_code = p_configuration_code
407: and p_language_code in (cnt.language
408: ,cnt.source_lang);
409: --