DBA Data[Home] [Help]

APPS.OTA_ACTIVITY_VERSION_API dependencies on HR_UTILITY

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

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

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

318: if p_validate then
319: raise hr_api.validate_enabled;
320: end if;
321:
322: hr_utility.set_location(' Leaving:'||l_proc, 70);
323: exception
324: when hr_api.validate_enabled then
325: --
326: -- As the Validate_Enabled exception has been raised

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

333: -- when validation only mode is being used.)
334: --
335: p_activity_version_id := null;
336: p_object_version_number := null;
337: hr_utility.set_location(' Leaving:'||l_proc, 80);
338: when others then
339: --
340: -- A validation or unexpected error has occured
341: --

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

341: --
342: rollback to CREATE_ACTIVITY_VERSION;
343: p_activity_version_id := null;
344: p_object_version_number := null;
345: hr_utility.set_location(' Leaving:'||l_proc, 90);
346: raise;
347: end create_activity_version;
348: -- ----------------------------------------------------------------------------
349: -- |-------------------------< UPDATE_ACTIVITY_VERSION >-------------------------|

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

418: l_object_version_number number := p_object_version_number;
419: l_effective_date date;
420: l_version_name ota_activity_versions_tl.version_name%type;
421: begin
422: hr_utility.set_location('Entering:'|| l_proc, 10);
423: --
424: -- Issue a savepoint
425: --
426: savepoint UPDATE_ACTIVITY_VERSION;

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

655: end if;
656: --
657: -- Set all output arguments
658: --
659: hr_utility.set_location(' Leaving:'||l_proc, 70);
660: exception
661: when hr_api.validate_enabled then
662: --
663: -- As the Validate_Enabled exception has been raised

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

669: -- (Any key or derived arguments must be set to null
670: -- when validation only mode is being used.)
671: --
672: p_object_version_number := null;
673: hr_utility.set_location(' Leaving:'||l_proc, 80);
674: when others then
675: --
676: -- A validation or unexpected error has occured
677: --

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

676: -- A validation or unexpected error has occured
677: --
678: rollback to UPDATE_ACTIVITY_VERSION;
679: p_object_version_number := l_object_version_number;
680: hr_utility.set_location(' Leaving:'||l_proc, 90);
681: raise;
682: end update_activity_version;
683: --
684: -- ----------------------------------------------------------------------------

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

722: l_tmp_ovn ota_act_cat_inclusions.object_version_number%type;
723: --
724: --
725: begin
726: hr_utility.set_location('Entering:'|| l_proc, 10);
727: --
728: -- Issue a savepoint
729: --
730: savepoint DELETE_ACTIVITY_VERSION;

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

818: --
819: -- Set all output arguments
820: --
821: --
822: hr_utility.set_location(' Leaving:'||l_proc, 170);
823: exception
824: when hr_api.validate_enabled then
825: --
826: -- As the Validate_Enabled exception has been raised

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

831: -- Only set output warning arguments
832: -- (Any key or derived arguments must be set to null
833: -- when validation only mode is being used.)
834: --
835: hr_utility.set_location(' Leaving:'||l_proc, 180);
836: when others then
837: --
838: -- A validation or unexpected error has occured
839: --

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

837: --
838: -- A validation or unexpected error has occured
839: --
840: rollback to DELETE_ACTIVITY_VERSION;
841: hr_utility.set_location(' Leaving:'||l_proc, 190);
842: raise;
843: end delete_activity_version;
844: --
845: end ota_activity_version_api;