DBA Data[Home] [Help]

APPS.IRC_DEFAULT_POSTING_API dependencies on HR_UTILITY

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

68: l_object_version_number number;
69: l_language_code varchar2(30);
70: --
71: begin
72: hr_utility.set_location('Entering:'|| l_proc, 10);
73: --
74: -- Issue a savepoint
75: --
76: savepoint create_default_posting;

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

264: -- Set all output arguments
265: --
266: p_object_version_number := l_object_version_number;
267: --
268: hr_utility.set_location(' Leaving:'||l_proc, 70);
269: exception
270: when hr_api.validate_enabled then
271: --
272: -- As the Validate_Enabled exception has been raised

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

279: -- when validation only mode is being used.)
280: --
281: p_object_version_number := null;
282: P_DEFAULT_POSTING_ID := null;
283: hr_utility.set_location(' Leaving:'||l_proc, 80);
284: when others then
285: --
286: -- A validation or unexpected error has occured
287: --

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

290: -- Reset IN OUT parameters and set OUT parameters
291: p_object_version_number := null;
292: P_DEFAULT_POSTING_ID := null;
293: --
294: hr_utility.set_location(' Leaving:'||l_proc, 90);
295: raise;
296: end create_default_posting;
297:
298: --

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

358: l_object_version_number number;
359: l_language_code varchar2(30);
360:
361: begin
362: hr_utility.set_location('Entering:'|| l_proc||p_object_version_number, 10);
363: --
364: -- Issue a savepoint
365: --
366: savepoint update_default_posting;

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

562: end if;
563: --
564: p_object_version_number := l_object_version_number;
565: --
566: hr_utility.set_location(' Leaving:'||l_proc||p_object_version_number, 70);
567: exception
568: when hr_api.validate_enabled then
569: --
570: -- As the Validate_Enabled exception has been raised

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

578: -- Only set output warning arguments
579: -- (Any key or derived arguments must be set to null
580: -- when validation only mode is being used.)
581: --
582: hr_utility.set_location(' Leaving:'||l_proc, 80);
583: when others then
584: --
585: -- A validation or unexpected error has occured
586: --

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

587: rollback to update_default_posting;
588: --
589: p_object_version_number := l_object_version_number;
590: --
591: hr_utility.set_location(' Leaving:'||l_proc, 90);
592: raise;
593: end update_default_posting;
594:
595: --

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

610: l_proc varchar2(72) := g_package||'delete_default_posting';
611: l_object_version_number number;
612:
613: begin
614: hr_utility.set_location('Entering:'|| l_proc, 10);
615: --
616: -- Issue a savepoint
617: --
618: savepoint delete_default_posting;

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

675: --
676: if p_validate then
677: raise hr_api.validate_enabled;
678: end if;
679: hr_utility.set_location(' Leaving:'||l_proc, 70);
680:
681: exception
682: when hr_api.validate_enabled then
683: --

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

689: -- Only set output warning arguments
690: -- (Any key or derived arguments must be set to null
691: -- when validation only mode is being used.)
692: --
693: hr_utility.set_location(' Leaving:'||l_proc, 80);
694: when others then
695: --
696: -- A validation or unexpected error has occured
697: --

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

695: --
696: -- A validation or unexpected error has occured
697: --
698: rollback to delete_default_posting;
699: hr_utility.set_location(' Leaving:'||l_proc, 90);
700: raise;
701: end delete_default_posting;
702:
703: --