DBA Data[Home] [Help]

APPS.PER_CNT_INS dependencies on PER_RI_CONFIGURATIONS_TL

Line 65: -- Insert the row into: per_ri_configurations_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: per_ri_configurations_tl
66: --
67: insert into per_ri_configurations_tl
68: (configuration_code
69: ,configuration_name

Line 67: insert into per_ri_configurations_tl

63: --
64: --
65: -- Insert the row into: per_ri_configurations_tl
66: --
67: insert into per_ri_configurations_tl
68: (configuration_code
69: ,configuration_name
70: ,configuration_description
71: ,language

Line 220: (p_module_name => 'PER_RI_CONFIGURATIONS_TL'

216: --
217: when hr_api.cannot_find_prog_unit then
218: --
219: hr_api.cannot_find_prog_unit_error
220: (p_module_name => 'PER_RI_CONFIGURATIONS_TL'
221: ,p_hook_type => 'AI');
222: --
223: end;
224: --

Line 341: from per_ri_configurations_tl cnt

337: select l.language_code
338: from fnd_languages l
339: where l.installed_flag in ('I','B')
340: and not exists (select null
341: from per_ri_configurations_tl cnt
342: where cnt.configuration_code = p_configuration_code
343: and cnt.language = l.language_code);
344: --
345: l_proc varchar2(72) := g_package || 'ins_tl';