DBA Data[Home] [Help]

APPS.HR_DE_LIABILITY_PREMIUMS_API dependencies on HR_UTILITY

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

51: l_object_version_number hr_de_liability_premiums_f.object_version_number%TYPE;
52: l_effective_start_date hr_de_liability_premiums_f.effective_start_date%TYPE;
53: l_effective_end_date hr_de_liability_premiums_f.effective_end_date%TYPE;
54: begin
55: hr_utility.set_location('Entering:'|| l_proc, 10);
56: --
57: -- Issue a savepoint
58: --
59: savepoint create_premium;

Line 191: hr_utility.set_location(' Leaving:'||l_proc, 70);

187: p_object_version_number := l_object_version_number;
188: p_effective_start_date := l_effective_start_date;
189: p_effective_end_date := l_effective_end_date;
190: --
191: hr_utility.set_location(' Leaving:'||l_proc, 70);
192: exception
193: when hr_api.validate_enabled then
194: --
195: -- As the Validate_Enabled exception has been raised

Line 208: hr_utility.set_location(' Leaving:'||l_proc, 80);

204: p_liability_premiums_id := null;
205: p_object_version_number := null;
206: p_effective_start_date := null;
207: p_effective_end_date := null;
208: hr_utility.set_location(' Leaving:'||l_proc, 80);
209: when others then
210: --
211: -- A validation or unexpected error has occured
212: --

Line 219: hr_utility.set_location(' Leaving:'||l_proc, 90);

215: p_liability_premiums_id := null;
216: p_object_version_number := null;
217: p_effective_start_date := null;
218: p_effective_end_date := null;
219: hr_utility.set_location(' Leaving:'||l_proc, 90);
220: raise;
221: end create_premium;
222: --
223: -- ----------------------------------------------------------------------------

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

268: l_effective_end_date hr_de_liability_premiums_f.effective_end_date%TYPE;
269: l_organization_link_id_o number;
270: l_temp_ovn number := p_object_version_number;
271: begin
272: hr_utility.set_location('Entering:'|| l_proc, 10);
273: --
274: -- Issue a savepoint
275: --
276: savepoint update_premium;

Line 411: hr_utility.set_location(' Leaving:'||l_proc, 70);

407: p_object_version_number := l_object_version_number;
408: p_effective_start_date := l_effective_start_date;
409: p_effective_end_date := l_effective_end_date;
410: --
411: hr_utility.set_location(' Leaving:'||l_proc, 70);
412: exception
413: when hr_api.validate_enabled then
414: --
415: -- As the Validate_Enabled exception has been raised

Line 427: hr_utility.set_location(' Leaving:'||l_proc, 80);

423: --
424: p_object_version_number := null;
425: p_effective_start_date := null;
426: p_effective_end_date := null;
427: hr_utility.set_location(' Leaving:'||l_proc, 80);
428: when others then
429: --
430: -- A validation or unexpected error has occured
431: --

Line 437: hr_utility.set_location(' Leaving:'||l_proc, 90);

433: -- Reset IN OUT and set OUT parameters.
434: p_object_version_number := l_temp_ovn;
435: p_effective_start_date := null;
436: p_effective_end_date := null;
437: hr_utility.set_location(' Leaving:'||l_proc, 90);
438: raise;
439: end update_premium;
440: --
441: -- ----------------------------------------------------------------------------

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

460: l_effective_end_date hr_de_liability_premiums_f.effective_end_date%TYPE;
461: l_organization_link_id_o number;
462: l_temp_ovn number := p_object_version_number;
463: begin
464: hr_utility.set_location('Entering:'|| l_proc, 10);
465: --
466: -- Issue a savepoint
467: --
468: savepoint delete_premium;

Line 528: hr_utility.set_location(' Leaving:'||l_proc, 70);

524: p_object_version_number := l_object_version_number;
525: p_effective_start_date := l_effective_start_date;
526: p_effective_end_date := l_effective_end_date;
527: --
528: hr_utility.set_location(' Leaving:'||l_proc, 70);
529: exception
530: when hr_api.validate_enabled then
531: --
532: -- As the Validate_Enabled exception has been raised

Line 544: hr_utility.set_location(' Leaving:'||l_proc, 80);

540: --
541: p_object_version_number := null;
542: p_effective_start_date := null;
543: p_effective_end_date := null;
544: hr_utility.set_location(' Leaving:'||l_proc, 80);
545: when others then
546: --
547: -- A validation or unexpected error has occured
548: --

Line 554: hr_utility.set_location(' Leaving:'||l_proc, 90);

550: -- Reset IN OUT and set OUT parameters.
551: p_object_version_number := l_temp_ovn;
552: p_effective_start_date := null;
553: p_effective_end_date := null;
554: hr_utility.set_location(' Leaving:'||l_proc, 90);
555: raise;
556: end delete_premium;
557: --
558: -- ----------------------------------------------------------------------------

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

574: l_validation_start_date date;
575: l_validation_end_date date;
576: begin
577: --
578: hr_utility.set_location('Entering:'|| l_proc, 10);
579: --
580: -- Lock the record.
581: --
582: hr_lip_shd.lck

Line 595: hr_utility.set_location('Exiting:'|| l_proc, 70);

591: --
592: p_validation_start_date := l_validation_start_date;
593: p_validation_end_date := l_validation_end_date;
594: --
595: hr_utility.set_location('Exiting:'|| l_proc, 70);
596: --
597: end lck;
598: --
599: end hr_de_liability_premiums_api;