DBA Data[Home] [Help]

APPS.GHR_PDI_INS dependencies on GHR_POSITION_DESCRIPTIONS

Line 63: -- Insert the row into: ghr_position_descriptions

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

Line 65: insert into ghr_position_descriptions

61: --ghr_pdi_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: ghr_position_descriptions
64: --
65: insert into ghr_position_descriptions
66: ( position_description_id,
67: routing_group_id,
68: date_from,
69: date_to,

Line 231: Cursor C_Sel1 is select ghr_position_descriptions_s.nextval from sys.dual;

227: Procedure pre_insert(p_rec in out nocopy ghr_pdi_shd.g_rec_type) is
228: --
229: l_proc varchar2(72) := g_package||'pre_insert';
230: --
231: Cursor C_Sel1 is select ghr_position_descriptions_s.nextval from sys.dual;
232: --
233: Begin
234: hr_utility.set_location('Entering:'||l_proc, 5);
235: --

Line 343: ( p_module_name => 'GHR_POSITION_DESCRIPTIONS'

339: );
340: exception
341: when hr_api.cannot_find_prog_unit then
342: hr_api.cannot_find_prog_unit_error
343: ( p_module_name => 'GHR_POSITION_DESCRIPTIONS'
344: ,p_hook_type => 'AI'
345: );
346: end;
347: -- End of API User Hook for post_insert.