DBA Data[Home] [Help]

APPS.HR_DELIVERY_METHODS_API dependencies on HR_UTILITY

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

54: l_effective_date date;
55: --
56: begin
57: --
58: hr_utility.set_location('Entering:'|| l_proc, 10);
59: --
60: -- Issue a savepoint
61: --
62: savepoint create_delivery_method;

Line 64: hr_utility.set_location(l_proc, 20);

60: -- Issue a savepoint
61: --
62: savepoint create_delivery_method;
63: --
64: hr_utility.set_location(l_proc, 20);
65: --
66: -- Process Logic
67: --
68: l_effective_date := trunc(p_effective_date);

Line 208: hr_utility.set_location(l_proc, 60);

204: -- End of API User Hook for the after hook of create_delivery_method
205: --
206: end;
207: --
208: hr_utility.set_location(l_proc, 60);
209: --
210: -- When in validation only mode raise the Validate_Enabled exception
211: --
212: if p_validate then

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

217: --
218: p_delivery_method_id := l_delivery_method_id;
219: p_object_version_number := l_object_version_number;
220: --
221: hr_utility.set_location(' Leaving:'||l_proc, 70);
222: --
223: exception
224: --
225: when hr_api.validate_enabled then

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

235: --
236: p_delivery_method_id := null;
237: p_object_version_number := null;
238: --
239: hr_utility.set_location(' Leaving:'||l_proc, 80);
240: --
241: when others then
242: --
243: -- A validation or unexpected error has occurred

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

301: l_effective_date date;
302: --
303: begin
304: --
305: hr_utility.set_location('Entering:'|| l_proc, 10);
306: --
307: -- Issue a savepoint
308: --
309: savepoint update_delivery_method;

Line 311: hr_utility.set_location(l_proc, 20);

307: -- Issue a savepoint
308: --
309: savepoint update_delivery_method;
310: --
311: hr_utility.set_location(l_proc, 20);
312: --
313: -- Process Logic
314: --
315: l_object_version_number := p_object_version_number;

Line 454: hr_utility.set_location(l_proc, 60);

450: -- End of API User Hook for the after hook of update_delivery_method
451: --
452: end;
453: --
454: hr_utility.set_location(l_proc, 60);
455: --
456: -- When in validation only mode raise the Validate_Enabled exception
457: --
458: if p_validate then

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

462: -- Set all output arguments
463: --
464: p_object_version_number := l_object_version_number;
465: --
466: hr_utility.set_location(' Leaving:'||l_proc, 70);
467: --
468: exception
469: --
470: when hr_api.validate_enabled then

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

473: -- we must rollback to the savepoint
474: --
475: ROLLBACK TO update_delivery_method;
476: --
477: hr_utility.set_location(' Leaving:'||l_proc, 80);
478: --
479: when others then
480: --
481: -- A validation or unexpected error has occurred

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

504: l_object_version_number per_person_dlvry_methods.object_version_number%TYPE;
505: --
506: begin
507: --
508: hr_utility.set_location('Entering:'|| l_proc, 10);
509: --
510: -- Issue a savepoint
511: --
512: savepoint delete_delivery_method;

Line 514: hr_utility.set_location(l_proc, 20);

510: -- Issue a savepoint
511: --
512: savepoint delete_delivery_method;
513: --
514: hr_utility.set_location(l_proc, 20);
515: --
516: -- Process Logic
517: --
518: begin

Line 564: hr_utility.set_location(l_proc, 60);

560: -- End of API User Hook for the after hook of delete_delivery_method
561: --
562: end;
563: --
564: hr_utility.set_location(l_proc, 60);
565: --
566: -- When in validation only mode raise the Validate_Enabled exception
567: --
568: if p_validate then

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

568: if p_validate then
569: raise hr_api.validate_enabled;
570: end if;
571: --
572: hr_utility.set_location(' Leaving:'||l_proc, 70);
573: --
574: exception
575: --
576: when hr_api.validate_enabled then