DBA Data[Home] [Help]

APPS.PER_VGR_INS dependencies on PER_VALID_GRADES

Line 63: -- Insert the row into: per_valid_grades

59: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: per_vgr_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_valid_grades
64: --
65: insert into per_valid_grades
66: ( valid_grade_id,
67: business_group_id,

Line 65: insert into per_valid_grades

61: per_vgr_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_valid_grades
64: --
65: insert into per_valid_grades
66: ( valid_grade_id,
67: business_group_id,
68: grade_id,
69: date_from,

Line 203: Cursor C_Sel1 is select per_valid_grades_s.nextval from sys.dual;

199: Procedure pre_insert(p_rec in out nocopy per_vgr_shd.g_rec_type) is
200: --
201: l_proc varchar2(72) := g_package||'pre_insert';
202: --
203: Cursor C_Sel1 is select per_valid_grades_s.nextval from sys.dual;
204: --
205: Begin
206: hr_utility.set_location('Entering:'||l_proc, 5);
207: --

Line 300: ( p_module_name => 'PER_VALID_GRADES',

296: );
297: exception
298: when hr_api.cannot_find_prog_unit then
299: hr_api.cannot_find_prog_unit_error
300: ( p_module_name => 'PER_VALID_GRADES',
301: p_hook_type => 'AI'
302: );
303: end;
304: -- End of API User Hook for post_insert.