DBA Data[Home] [Help]

APPS.PER_JOB_INS dependencies on PER_JOBS

Line 85: -- Insert the row into: per_jobs

81: p_rec.object_version_number := 1; -- Initialise the object version
82: --
83: per_job_shd.g_api_dml := true; -- Set the api dml status
84: --
85: -- Insert the row into: per_jobs
86: --
87: -- Bug 3213714
88: -- Restricting size of the name column
89: p_rec.name := substr(p_rec.name,1,700);

Line 91: insert into per_jobs

87: -- Bug 3213714
88: -- Restricting size of the name column
89: p_rec.name := substr(p_rec.name,1,700);
90:
91: insert into per_jobs
92: ( job_id,
93: business_group_id,
94: job_definition_id,
95: date_from,

Line 279: Cursor C_Sel1 is select per_jobs_s.nextval from sys.dual;

275: Procedure pre_insert(p_rec in out nocopy per_job_shd.g_rec_type) is
276: --
277: l_proc varchar2(72) := g_package||'pre_insert';
278: --
279: Cursor C_Sel1 is select per_jobs_s.nextval from sys.dual;
280: --
281: Begin
282: hr_utility.set_location('Entering:'||l_proc, 5);
283: --

Line 400: (p_module_name => 'PER_JOBS'

396: );
397: exception
398: when hr_api.cannot_find_prog_unit then
399: hr_api.cannot_find_prog_unit_error
400: (p_module_name => 'PER_JOBS'
401: ,p_hook_type => 'AI'
402: );
403: end;
404: -- End of API User Hook for post_insert.