DBA Data[Home] [Help]

APPS.PER_CPN_INS dependencies on PER_COMPETENCES

Line 56: -- Insert the row into: per_competences

52: Begin
53: hr_utility.set_location('Entering:'||l_proc, 5);
54: p_rec.object_version_number := 1; -- Initialise the object version
55: --
56: -- Insert the row into: per_competences
57: -- ngundura added column competence_alias
58: insert into per_competences
59: ( competence_id,
60: name,

Line 58: insert into per_competences

54: p_rec.object_version_number := 1; -- Initialise the object version
55: --
56: -- Insert the row into: per_competences
57: -- ngundura added column competence_alias
58: insert into per_competences
59: ( competence_id,
60: name,
61: business_group_id,
62: object_version_number,

Line 260: cursor C_Sel1 is select per_competences_s.nextval from sys.dual;

256: Procedure pre_insert(p_rec in out nocopy per_cpn_shd.g_rec_type) is
257: --
258: l_proc varchar2(72) := g_package||'pre_insert';
259: --
260: cursor C_Sel1 is select per_competences_s.nextval from sys.dual;
261: --
262: Begin
263: hr_utility.set_location('Entering:'||l_proc, 5);
264: --

Line 388: ( p_module_name => 'PER_COMPETENCES'

384: );
385: exception
386: when hr_api.cannot_find_prog_unit then
387: hr_api.cannot_find_prog_unit_error
388: ( p_module_name => 'PER_COMPETENCES'
389: ,p_hook_type => 'AI'
390: );
391: end;
392: -- End of API User Hook for post_insert.