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 209: hr_utility.set_location(' Leaving:'||l_proc, 10);

205: ,p_rec.show_future_term_employee
206:
207: );
208:
209: hr_utility.set_location(' Leaving:'||l_proc, 10);
210: Exception
211: When hr_api.check_integrity_violated Then
212: -- A check constraint has been violated
213: per_apt_shd.constraint_error

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

272: select null from per_appraisal_templates
273: where appraisal_template_id = per_apt_ins.g_appraisal_template_id_i;
274:
275: Begin
276: hr_utility.set_location('Entering:'||l_proc, 5);
277:
278:
279: -- Select the next sequence number
280: if (per_apt_ins.g_appraisal_template_id_i is not null ) then

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

300: Open C_Sel1;
301: Fetch C_Sel1 Into p_rec.appraisal_template_id;
302: Close C_Sel1;
303: end if;
304: hr_utility.set_location(' Leaving:'||l_proc, 10);
305: End pre_insert;
306:
307: -- ---------------------------------------------------------------------------+
308: -- |-----------------------------< post_insert >------------------------------|

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

340:
341: l_proc varchar2(72) := g_package||'post_insert';
342:
343: Begin
344: hr_utility.set_location('Entering:'||l_proc, 5);
345:
346: -- This is a hook point and the user hook for post_insert is called here.
347:
348: begin

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

418: );
419: end;
420: -- End of API User Hook for post_insert.
421:
422: hr_utility.set_location(' Leaving:'||l_proc, 10);
423: End post_insert;
424:
425: -- ---------------------------------------------------------------------------+
426: -- |---------------------------------< ins >----------------------------------|

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

434:
435: l_proc varchar2(72) := g_package||'ins';
436:
437: Begin
438: hr_utility.set_location('Entering:'||l_proc, 5);
439:
440: -- Determine if the business process is to be validated.
441:
442: If p_validate then

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

467: If p_validate then
468: Raise HR_Api.Validate_Enabled;
469: End If;
470:
471: hr_utility.set_location(' Leaving:'||l_proc, 10);
472: Exception
473: When HR_Api.Validate_Enabled Then
474:
475: -- As the Validate_Enabled exception has been raised

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

551: l_rec per_apt_shd.g_rec_type;
552: l_proc varchar2(72) := g_package||'ins';
553:
554: Begin
555: hr_utility.set_location('Entering:'||l_proc, 5);
556:
557: -- Call conversion function to turn arguments into the
558: -- p_rec structure.
559:

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

632:
633: p_appraisal_template_id := l_rec.appraisal_template_id;
634: p_object_version_number := l_rec.object_version_number;
635:
636: hr_utility.set_location(' Leaving:'||l_proc, 10);
637: End ins;
638:
639: end per_apt_ins;