DBA Data[Home] [Help]

APPS.GHR_PDC_INS dependencies on GHR_PD_CLASSIFICATIONS

Line 63: -- Insert the row into: ghr_pd_classifications

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

Line 65: insert into ghr_pd_classifications

61: --ghr_pdc_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: ghr_pd_classifications
64: --
65: insert into ghr_pd_classifications
66: ( pd_classification_id,
67: position_description_id,
68: class_grade_by,
69: official_title,

Line 151: Cursor C_Sel1 is select ghr_pd_classifications_s.nextval from sys.dual;

147: Procedure pre_insert(p_rec in out ghr_pdc_shd.g_rec_type) is
148: --
149: l_proc varchar2(72) := g_package||'pre_insert';
150: --
151: Cursor C_Sel1 is select ghr_pd_classifications_s.nextval from sys.dual;
152: --
153: Begin
154: hr_utility.set_location('Entering:'||l_proc, 5);
155: --

Line 222: ( p_module_name => 'GHR_PD_CLASSIFICATIONS'

218: );
219: exception
220: when hr_api.cannot_find_prog_unit then
221: hr_api.cannot_find_prog_unit_error
222: ( p_module_name => 'GHR_PD_CLASSIFICATIONS'
223: ,p_hook_type => 'AI'
224: );
225: end;
226: -- End of API User Hook for post_insert.