DBA Data[Home] [Help]

APPS.PER_JBR_INS dependencies on PER_JOB_REQUIREMENTS

Line 63: -- Insert the row into: per_job_requirements

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

Line 65: insert into per_job_requirements

61: per_jbr_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_job_requirements
64: --
65: insert into per_job_requirements
66: (
67: job_requirement_id,
68: business_group_id,
69: analysis_criteria_id,

Line 207: Cursor C_Sel1 is select per_job_requirements_s.nextval from sys.dual;

203: Procedure pre_insert(p_rec in out nocopy per_jbr_shd.g_rec_type) is
204: --
205: l_proc varchar2(72) := g_package||'pre_insert';
206: --
207: Cursor C_Sel1 is select per_job_requirements_s.nextval from sys.dual;
208: --
209: Begin
210: hr_utility.set_location('Entering:'||l_proc, 5);
211: --

Line 305: (p_module_name => 'PER_JOB_REQUIREMENTS'

301: );
302: exception
303: when hr_api.cannot_find_prog_unit then
304: hr_api.cannot_find_prog_unit_error
305: (p_module_name => 'PER_JOB_REQUIREMENTS'
306: ,p_hook_type => 'AI'
307: );
308: end;
309: -- End of API User Hook for post_insert.