DBA Data[Home] [Help]

APPS.BEN_LOS_FACTORS_API dependencies on HR_UTILITY

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

70: l_object_version_number ben_los_fctr.object_version_number%TYPE;
71: --
72: begin
73: --
74: hr_utility.set_location('Entering:'|| l_proc, 10);
75: --
76: -- Issue a savepoint if operating in validation only mode
77: --
78: savepoint create_LOS_FACTORS;

Line 80: hr_utility.set_location(l_proc, 20);

76: -- Issue a savepoint if operating in validation only mode
77: --
78: savepoint create_LOS_FACTORS;
79: --
80: hr_utility.set_location(l_proc, 20);
81: --
82: -- Process Logic
83: --
84: begin

Line 273: hr_utility.set_location(l_proc, 60);

269: -- End of API User Hook for the after hook of create_LOS_FACTORS
270: --
271: end;
272: --
273: hr_utility.set_location(l_proc, 60);
274: --
275: -- When in validation only mode raise the Validate_Enabled exception
276: --
277: if p_validate then

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

282: --
283: p_los_fctr_id := l_los_fctr_id;
284: p_object_version_number := l_object_version_number;
285: --
286: hr_utility.set_location(' Leaving:'||l_proc, 70);
287: --
288: exception
289: --
290: when hr_api.validate_enabled then

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

299: -- when validation only mode is being used.)
300: --
301: p_los_fctr_id := null;
302: p_object_version_number := null;
303: hr_utility.set_location(' Leaving:'||l_proc, 80);
304: --
305: when others then
306: --
307: -- A validation or unexpected error has occured

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

376: l_object_version_number ben_los_fctr.object_version_number%TYPE;
377: --
378: begin
379: --
380: hr_utility.set_location('Entering:'|| l_proc, 10);
381: --
382: -- Issue a savepoint if operating in validation only mode
383: --
384: savepoint update_LOS_FACTORS;

Line 386: hr_utility.set_location(l_proc, 20);

382: -- Issue a savepoint if operating in validation only mode
383: --
384: savepoint update_LOS_FACTORS;
385: --
386: hr_utility.set_location(l_proc, 20);
387: --
388: -- Process Logic
389: --
390: l_object_version_number := p_object_version_number;

Line 582: hr_utility.set_location(l_proc, 60);

578: -- End of API User Hook for the after hook of update_LOS_FACTORS
579: --
580: end;
581: --
582: hr_utility.set_location(l_proc, 60);
583: --
584: -- When in validation only mode raise the Validate_Enabled exception
585: --
586: if p_validate then

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

590: -- Set all output arguments
591: --
592: p_object_version_number := l_object_version_number;
593: --
594: hr_utility.set_location(' Leaving:'||l_proc, 70);
595: --
596: exception
597: --
598: when hr_api.validate_enabled then

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

605: -- Only set output warning arguments
606: -- (Any key or derived arguments must be set to null
607: -- when validation only mode is being used.)
608: --
609: hr_utility.set_location(' Leaving:'||l_proc, 80);
610: --
611: when others then
612: --
613: -- A validation or unexpected error has occured

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

633: l_object_version_number ben_los_fctr.object_version_number%TYPE;
634: --
635: begin
636: --
637: hr_utility.set_location('Entering:'|| l_proc, 10);
638: --
639: -- Issue a savepoint if operating in validation only mode
640: --
641: savepoint delete_LOS_FACTORS;

Line 643: hr_utility.set_location(l_proc, 20);

639: -- Issue a savepoint if operating in validation only mode
640: --
641: savepoint delete_LOS_FACTORS;
642: --
643: hr_utility.set_location(l_proc, 20);
644: --
645: -- Process Logic
646: --
647: l_object_version_number := p_object_version_number;

Line 699: hr_utility.set_location(l_proc, 60);

695: -- End of API User Hook for the after hook of delete_LOS_FACTORS
696: --
697: end;
698: --
699: hr_utility.set_location(l_proc, 60);
700: --
701: -- When in validation only mode raise the Validate_Enabled exception
702: --
703: if p_validate then

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

703: if p_validate then
704: raise hr_api.validate_enabled;
705: end if;
706: --
707: hr_utility.set_location(' Leaving:'||l_proc, 70);
708: --
709: exception
710: --
711: when hr_api.validate_enabled then

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

745: l_proc varchar2(72) := g_package||'lck';
746: --
747: begin
748: --
749: hr_utility.set_location('Entering:'|| l_proc, 10);
750: --
751: ben_lsf_shd.lck
752: (
753: p_los_fctr_id => p_los_fctr_id

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

753: p_los_fctr_id => p_los_fctr_id
754: ,p_object_version_number => p_object_version_number
755: );
756: --
757: hr_utility.set_location(' Leaving:'||l_proc, 70);
758: --
759: end lck;
760: --
761: end ben_LOS_FACTORS_api;