DBA Data[Home] [Help]

APPS.PER_APT_INS dependencies on HR_UTILITY

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

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

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

25: hr_utility.set_location('Entering:'||l_proc, 10);
26: --
27: per_apt_ins.g_appraisal_template_id_i := p_appraisal_template_id;
28: --
29: hr_utility.set_location(' Leaving:'||l_proc, 20);
30: End set_base_key_value;
31: --
32: --
33:

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

72:
73: l_proc varchar2(72) := g_package||'insert_dml';
74:
75: Begin
76: hr_utility.set_location('Entering:'||l_proc, 5);
77: p_rec.object_version_number := 1; -- Initialise the object version
78:
79:
80: -- Insert the row into: per_appraisal_templates

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

193: p_rec.part_app_off_template_code,
194: p_rec.part_rev_off_template_code
195: );
196:
197: hr_utility.set_location(' Leaving:'||l_proc, 10);
198: Exception
199: When hr_api.check_integrity_violated Then
200: -- A check constraint has been violated
201: per_apt_shd.constraint_error

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

260: select null from per_appraisal_templates
261: where appraisal_template_id = per_apt_ins.g_appraisal_template_id_i;
262:
263: Begin
264: hr_utility.set_location('Entering:'||l_proc, 5);
265:
266:
267: -- Select the next sequence number
268: if (per_apt_ins.g_appraisal_template_id_i is not null ) then

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

288: Open C_Sel1;
289: Fetch C_Sel1 Into p_rec.appraisal_template_id;
290: Close C_Sel1;
291: end if;
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: -- This is a hook point and the user hook for post_insert is called here.
335:
336: begin

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

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

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

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

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 530: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

602:
603: p_appraisal_template_id := l_rec.appraisal_template_id;
604: p_object_version_number := l_rec.object_version_number;
605:
606: hr_utility.set_location(' Leaving:'||l_proc, 10);
607: End ins;
608:
609: end per_apt_ins;