DBA Data[Home] [Help]

APPS.OTA_RESOURCE_DEFINITION_API dependencies on HR_UTILITY

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

64: l_object_version_number number;
65: l_effective_date date;
66: l_name ota_suppliable_resources_tl.name%type;
67: begin
68: hr_utility.set_location('Entering:'|| l_proc, 10);
69: --
70: -- Issue a savepoint
71: --
72: savepoint CREATE_RESOURCE_DEFINITION;

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

257: p_supplied_resource_id := l_supplied_resource_id;
258: p_object_version_number := l_object_version_number;
259:
260:
261: hr_utility.set_location(' Leaving:'||l_proc, 70);
262: exception
263: when hr_api.validate_enabled then
264: --
265: -- As the Validate_Enabled exception has been raised

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

272: -- when validation only mode is being used.)
273: --
274: p_supplied_resource_id := null;
275: p_object_version_number := null;
276: hr_utility.set_location(' Leaving:'||l_proc, 80);
277: when others then
278: --
279: -- A validation or unexpected error has occured
280: --

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

280: --
281: rollback to CREATE_RESOURCE_DEFINITION;
282: p_supplied_resource_id := null;
283: p_object_version_number := null;
284: hr_utility.set_location(' Leaving:'||l_proc, 90);
285: raise;
286: end create_RESOURCE_DEFINITION;
287: -- ----------------------------------------------------------------------------
288: -- |----------------------------< UPDATE_RESOURCE_DEFINITION >---------------------------|

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

342: l_effective_date date;
343: l_object_version_number number := p_object_version_number;
344: l_name ota_suppliable_resources_tl.name%Type;
345: begin
346: hr_utility.set_location('Entering:'|| l_proc, 10);
347: --
348: -- Issue a savepoint
349: --
350: savepoint UPDATE_RESOURCE_DEFINITION;

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

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

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

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

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

555: -- A validation or unexpected error has occured
556: --
557: rollback to UPDATE_RESOURCE_DEFINITION;
558: p_object_version_number := l_object_version_number;
559: hr_utility.set_location(' Leaving:'||l_proc, 90);
560: raise;
561: end update_RESOURCE_DEFINITION;
562: --
563: -- ----------------------------------------------------------------------------

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

576: l_object_version_id number;
577: --
578: --
579: begin
580: hr_utility.set_location('Entering:'|| l_proc, 10);
581: --
582: -- Issue a savepoint
583: --
584: savepoint DELETE_RESOURCE_DEFINITION;

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

641: --
642: -- Set all output arguments
643: --
644: --
645: hr_utility.set_location(' Leaving:'||l_proc, 170);
646: exception
647: when hr_api.validate_enabled then
648: --
649: -- As the Validate_Enabled exception has been raised

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

654: -- Only set output warning arguments
655: -- (Any key or derived arguments must be set to null
656: -- when validation only mode is being used.)
657: --
658: hr_utility.set_location(' Leaving:'||l_proc, 180);
659: when others then
660: --
661: -- A validation or unexpected error has occured
662: --

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

660: --
661: -- A validation or unexpected error has occured
662: --
663: rollback to DELETE_RESOURCE_DEFINITION;
664: hr_utility.set_location(' Leaving:'||l_proc, 190);
665: raise;
666: end delete_RESOURCE_DEFINITION;
667: --
668: