DBA Data[Home] [Help]

APPS.PER_JOB_INS dependencies on HR_UTILITY

Line 24: hr_utility.set_location('Entering:'||l_proc, 10);

20: --
21: l_proc varchar2(72) := g_package||'set_base_key_value';
22: --
23: Begin
24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: per_job_ins.g_job_id_i := p_job_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);

Line 28: hr_utility.set_location(' Leaving:'||l_proc, 20);

24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: per_job_ins.g_job_id_i := p_job_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);
29: End set_base_key_value;
30: --
31: --
32: -- ----------------------------------------------------------------------------

Line 80: hr_utility.set_location('Entering:'||l_proc, 5);

76: --
77: l_proc varchar2(72) := g_package||'insert_dml';
78: --
79: Begin
80: hr_utility.set_location('Entering:'||l_proc, 5);
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: --

Line 216: hr_utility.set_location(' Leaving:'||l_proc, 10);

212: );
213: --
214: per_job_shd.g_api_dml := false; -- Unset the api dml status
215: --
216: hr_utility.set_location(' Leaving:'||l_proc, 10);
217: Exception
218: When hr_api.check_integrity_violated Then
219: -- A check constraint has been violated
220: per_job_shd.g_api_dml := false; -- Unset the api dml status

Line 282: hr_utility.set_location('Entering:'||l_proc, 5);

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: --
284: --
285: -- Select the next sequence number
286: --

Line 292: hr_utility.set_location(' Leaving:'||l_proc, 10);

288: Fetch C_Sel1 into p_rec.job_id;
289: Close C_Sel1;
290: --
291: --
292: hr_utility.set_location(' Leaving:'||l_proc, 10);
293: End pre_insert;
294: --
295: -- ----------------------------------------------------------------------------
296: -- |-----------------------------< post_insert >------------------------------|

Line 332: hr_utility.set_location('Entering:'||l_proc, 5);

328: --
329: l_proc varchar2(72) := g_package||'post_insert';
330: --
331: Begin
332: hr_utility.set_location('Entering:'||l_proc, 5);
333: --
334: -- Start of API User Hook for post_insert.
335: begin
336: per_job_rki.after_insert

Line 406: hr_utility.set_location(' Leaving:'||l_proc, 10);

402: );
403: end;
404: -- End of API User Hook for post_insert.
405: --
406: hr_utility.set_location(' Leaving:'||l_proc, 10);
407: End post_insert;
408: --
409: -- ----------------------------------------------------------------------------
410: -- |---------------------------------< ins >----------------------------------|

Line 421: hr_utility.set_location('Entering:'||l_proc, 5);

417: --
418: l_proc varchar2(72) := g_package||'ins';
419: --
420: Begin
421: hr_utility.set_location('Entering:'||l_proc, 5);
422: -- Determine if the business process is to be validated
423:
424: If p_validate then
425: --

Line 452: hr_utility.set_location(' Leaving:'||l_proc, 10);

448: If p_validate then
449: Raise HR_Api.Validate_Enabled;
450: End If;
451: --
452: hr_utility.set_location(' Leaving:'||l_proc, 10);
453: Exception
454: When HR_Api.Validate_Enabled Then
455: --
456: -- As the Validate_Enabled exception has been raised

Line 533: hr_utility.set_location('Entering:'||l_proc, 5);

529: l_rec per_job_shd.g_rec_type;
530: l_proc varchar2(72) := g_package||'ins';
531: --
532: Begin
533: hr_utility.set_location('Entering:'||l_proc, 5);
534: --
535: -- Call conversion function to turn arguments into the
536: -- p_rec structure.
537: --

Line 613: hr_utility.set_location(' Leaving:'||l_proc, 10);

609: --
610: p_job_id := l_rec.job_id;
611: p_object_version_number := l_rec.object_version_number;
612: --
613: hr_utility.set_location(' Leaving:'||l_proc, 10);
614: End ins;
615: --
616: end per_job_ins;