DBA Data[Home] [Help]

APPS.OTA_ACTIVITY_VERSION_API dependencies on HR_UTILITY

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

81: l_object_version_number number;
82: l_effective_date date;
83: l_version_name ota_activity_versions_tl.version_name%type;
84: begin
85: hr_utility.set_location('Entering:'|| l_proc, 10);
86: --
87: -- Issue a savepoint
88: --
89: savepoint CREATE_ACTIVITY_VERSION;

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

324: if p_validate then
325: raise hr_api.validate_enabled;
326: end if;
327:
328: hr_utility.set_location(' Leaving:'||l_proc, 70);
329: exception
330: when hr_api.validate_enabled then
331: --
332: -- As the Validate_Enabled exception has been raised

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

339: -- when validation only mode is being used.)
340: --
341: p_activity_version_id := null;
342: p_object_version_number := null;
343: hr_utility.set_location(' Leaving:'||l_proc, 80);
344: when others then
345: --
346: -- A validation or unexpected error has occured
347: --

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

347: --
348: rollback to CREATE_ACTIVITY_VERSION;
349: p_activity_version_id := null;
350: p_object_version_number := null;
351: hr_utility.set_location(' Leaving:'||l_proc, 90);
352: raise;
353: end create_activity_version;
354: -- ----------------------------------------------------------------------------
355: -- |-------------------------< UPDATE_ACTIVITY_VERSION >-------------------------|

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

425: l_object_version_number number := p_object_version_number;
426: l_effective_date date;
427: l_version_name ota_activity_versions_tl.version_name%type;
428: begin
429: hr_utility.set_location('Entering:'|| l_proc, 10);
430: --
431: -- Issue a savepoint
432: --
433: savepoint UPDATE_ACTIVITY_VERSION;

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

663: end if;
664: --
665: -- Set all output arguments
666: --
667: hr_utility.set_location(' Leaving:'||l_proc, 70);
668: exception
669: when hr_api.validate_enabled then
670: --
671: -- As the Validate_Enabled exception has been raised

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

677: -- (Any key or derived arguments must be set to null
678: -- when validation only mode is being used.)
679: --
680: p_object_version_number := null;
681: hr_utility.set_location(' Leaving:'||l_proc, 80);
682: when others then
683: --
684: -- A validation or unexpected error has occured
685: --

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

684: -- A validation or unexpected error has occured
685: --
686: rollback to UPDATE_ACTIVITY_VERSION;
687: p_object_version_number := l_object_version_number;
688: hr_utility.set_location(' Leaving:'||l_proc, 90);
689: raise;
690: end update_activity_version;
691: --
692: -- ----------------------------------------------------------------------------

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

730: l_tmp_ovn ota_act_cat_inclusions.object_version_number%type;
731: --
732: --
733: begin
734: hr_utility.set_location('Entering:'|| l_proc, 10);
735: --
736: -- Issue a savepoint
737: --
738: savepoint DELETE_ACTIVITY_VERSION;

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

826: --
827: -- Set all output arguments
828: --
829: --
830: hr_utility.set_location(' Leaving:'||l_proc, 170);
831: exception
832: when hr_api.validate_enabled then
833: --
834: -- As the Validate_Enabled exception has been raised

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

839: -- Only set output warning arguments
840: -- (Any key or derived arguments must be set to null
841: -- when validation only mode is being used.)
842: --
843: hr_utility.set_location(' Leaving:'||l_proc, 180);
844: when others then
845: --
846: -- A validation or unexpected error has occured
847: --

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

845: --
846: -- A validation or unexpected error has occured
847: --
848: rollback to DELETE_ACTIVITY_VERSION;
849: hr_utility.set_location(' Leaving:'||l_proc, 190);
850: raise;
851: end delete_activity_version;
852: --
853: end ota_activity_version_api;