DBA Data[Home] [Help]

APPS.PER_RTL_INS dependencies on PER_RATING_LEVELS

Line 55: -- Insert the row into: per_rating_levels

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_rating_levels
56: --
57: insert into per_rating_levels
58: ( rating_level_id,
59: business_group_id,

Line 57: insert into per_rating_levels

53: p_rec.object_version_number := 1; -- Initialise the object version
54: --
55: -- Insert the row into: per_rating_levels
56: --
57: insert into per_rating_levels
58: ( rating_level_id,
59: business_group_id,
60: step_value,
61: rating_scale_id,

Line 179: Cursor C_Sel1 is select per_rating_levels_s.nextval from sys.dual;

175: Procedure pre_insert(p_rec in out nocopy per_rtl_shd.g_rec_type) is
176: --
177: l_proc varchar2(72) := g_package||'pre_insert';
178: --
179: Cursor C_Sel1 is select per_rating_levels_s.nextval from sys.dual;
180: --
181: Begin
182: hr_utility.set_location('Entering:'||l_proc, 5);
183: --

Line 270: ( p_module_name => 'PER_RATING_LEVELS'

266:
267: exception
268: when hr_api.cannot_find_prog_unit then
269: hr_api.cannot_find_prog_unit_error
270: ( p_module_name => 'PER_RATING_LEVELS'
271: ,p_hook_type => 'AI'
272: );
273: end;
274: -- End of API User Hook for post_insert.