DBA Data[Home] [Help]

APPS.PER_DPF_INS dependencies on PER_DEPLOYMENT_FACTORS

Line 63: -- Insert the row into: per_deployment_factors

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

Line 65: insert into per_deployment_factors

61: per_dpf_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_deployment_factors
64: --
65: insert into per_deployment_factors
66: ( deployment_factor_id,
67: position_id,
68: person_id,
69: job_id,

Line 245: Cursor C_Sel1 is select per_deployment_factors_s.nextval from sys.dual;

241: Procedure pre_insert(p_rec in out nocopy per_dpf_shd.g_rec_type) is
242: --
243: l_proc varchar2(72) := g_package||'pre_insert';
244: --
245: Cursor C_Sel1 is select per_deployment_factors_s.nextval from sys.dual;
246: --
247: Begin
248: hr_utility.set_location('Entering:'||l_proc, 5);
249: --

Line 363: ( p_module_name => 'PER_DEPLOYMENT_FACTORS',

359: );
360: exception
361: when hr_api.cannot_find_prog_unit then
362: hr_api.cannot_find_prog_unit_error
363: ( p_module_name => 'PER_DEPLOYMENT_FACTORS',
364: p_hook_type => 'AI'
365: );
366: end;
367: -- End of API User Hook for post_insert.