DBA Data[Home] [Help]

APPS.PER_ASR_INS dependencies on PER_ASSESSMENT_GROUPS

Line 55: -- Insert the row into: per_assessment_groups

51: Begin
52: hr_utility.set_location('Entering:'||l_proc, 5);
53: p_rec.object_version_number := 1; -- Initialise the object version
54: --
55: -- Insert the row into: per_assessment_groups
56: --
57: insert into per_assessment_groups
58: ( assessment_group_id,
59: name,

Line 57: insert into per_assessment_groups

53: p_rec.object_version_number := 1; -- Initialise the object version
54: --
55: -- Insert the row into: per_assessment_groups
56: --
57: insert into per_assessment_groups
58: ( assessment_group_id,
59: name,
60: business_group_id,
61: membership_list,

Line 175: Cursor C_Sel1 is select per_assessment_groups_s.nextval from sys.dual;

171: Procedure pre_insert(p_rec in out per_asr_shd.g_rec_type) is
172: --
173: l_proc varchar2(72) := g_package||'pre_insert';
174: --
175: Cursor C_Sel1 is select per_assessment_groups_s.nextval from sys.dual;
176: --
177: Begin
178: hr_utility.set_location('Entering:'||l_proc, 5);
179: --

Line 263: ( p_module_name => 'PER_ASSESSMENT_GROUPS'

259: p_attribute20 => p_rec.attribute20 );
260: exception
261: when hr_api.cannot_find_prog_unit then
262: hr_api.cannot_find_prog_unit_error
263: ( p_module_name => 'PER_ASSESSMENT_GROUPS'
264: ,p_hook_type => 'AI'
265: );
266: end;
267: -- End of API User Hook for post_insert.