DBA Data[Home] [Help]

APPS.OTA_LEARNING_PATH_API dependencies on HR_UTILITY

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

65: l_learning_path_id number;
66: l_object_version_number number;
67: l_effective_date date;
68: begin
69: hr_utility.set_location('Entering:'|| l_proc, 10);
70: --
71: -- Issue a savepoint
72: --
73: savepoint CREATE_LEARNING_PATH;

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

253: if p_validate then
254: raise hr_api.validate_enabled;
255: end if;
256:
257: hr_utility.set_location(' Leaving:'||l_proc, 70);
258: exception
259: when hr_api.validate_enabled then
260: --
261: -- As the Validate_Enabled exception has been raised

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

268: -- when validation only mode is being used.)
269: --
270: p_learning_path_id := null;
271: p_object_version_number := null;
272: hr_utility.set_location(' Leaving:'||l_proc, 80);
273: when others then
274: --
275: -- A validation or unexpected error has occured
276: --

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

276: --
277: rollback to CREATE_LEARNING_PATH;
278: p_learning_path_id := null;
279: p_object_version_number := null;
280: hr_utility.set_location(' Leaving:'||l_proc, 90);
281: raise;
282: end create_learning_path;
283: -- ----------------------------------------------------------------------------
284: -- |-------------------------< UPDATE_LEARNING_PATH >-------------------------|

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

338: l_proc varchar2(72) := g_package||' Update Learning Path';
339: l_object_version_number number := p_object_version_number;
340: l_effective_date date;
341: begin
342: hr_utility.set_location('Entering:'|| l_proc, 10);
343: --
344: -- Issue a savepoint
345: --
346: savepoint UPDATE_LEARNING_PATH;

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

530: end if;
531: --
532: -- Set all output arguments
533: --
534: hr_utility.set_location(' Leaving:'||l_proc, 70);
535: exception
536: when hr_api.validate_enabled then
537: --
538: -- As the Validate_Enabled exception has been raised

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

544: -- (Any key or derived arguments must be set to null
545: -- when validation only mode is being used.)
546: --
547: p_object_version_number := null;
548: hr_utility.set_location(' Leaving:'||l_proc, 80);
549: when others then
550: --
551: -- A validation or unexpected error has occured
552: --

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

551: -- A validation or unexpected error has occured
552: --
553: rollback to UPDATE_LEARNING_PATH;
554: p_object_version_number := l_object_version_number;
555: hr_utility.set_location(' Leaving:'||l_proc, 90);
556: raise;
557: end update_learning_path;
558: --
559: -- ----------------------------------------------------------------------------

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

572: l_proc varchar2(72) := g_package||' Delete Learning Path';
573: --
574: --
575: begin
576: hr_utility.set_location('Entering:'|| l_proc, 10);
577: --
578: -- Issue a savepoint
579: --
580: savepoint DELETE_LEARNING_PATH;

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

632: --
633: -- Set all output arguments
634: --
635: --
636: hr_utility.set_location(' Leaving:'||l_proc, 170);
637: exception
638: when hr_api.validate_enabled then
639: --
640: -- As the Validate_Enabled exception has been raised

Line 649: hr_utility.set_location(' Leaving:'||l_proc, 180);

645: -- Only set output warning arguments
646: -- (Any key or derived arguments must be set to null
647: -- when validation only mode is being used.)
648: --
649: hr_utility.set_location(' Leaving:'||l_proc, 180);
650: when others then
651: --
652: -- A validation or unexpected error has occured
653: --

Line 655: hr_utility.set_location(' Leaving:'||l_proc, 190);

651: --
652: -- A validation or unexpected error has occured
653: --
654: rollback to DELETE_LEARNING_PATH;
655: hr_utility.set_location(' Leaving:'||l_proc, 190);
656: raise;
657: end delete_learning_path;
658: --
659: end ota_learning_path_api;