DBA Data[Home] [Help]

APPS.HR_CAGR_GRADE_STRUCTURES_API dependencies on HR_UTILITY

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

47: l_object_version_number per_cagr_grade_structures.object_version_number%TYPE;
48: --
49: begin
50: --
51: hr_utility.set_location('Entering:'|| l_proc, 10);
52: --
53: -- Issue a savepoint if operating in validation only mode
54: --
55: savepoint create_cagr_grade_structures;

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

53: -- Issue a savepoint if operating in validation only mode
54: --
55: savepoint create_cagr_grade_structures;
56: --
57: hr_utility.set_location(l_proc, 20);
58: --
59: -- Process Logic
60: --
61: begin

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

177: -- End of API User Hook for the after hook of create_cagr_grade_structures
178: --
179: end;
180: --
181: hr_utility.set_location(l_proc, 60);
182: --
183: -- When in validation only mode raise the Validate_Enabled exception
184: --
185: if p_validate then

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

190: --
191: p_cagr_grade_structure_id := l_cagr_grade_structure_id;
192: p_object_version_number := l_object_version_number;
193: --
194: hr_utility.set_location(' Leaving:'||l_proc, 70);
195: --
196: exception
197: --
198: when hr_api.validate_enabled then

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

207: -- when validation only mode is being used.)
208: --
209: p_cagr_grade_structure_id := null;
210: p_object_version_number := null;
211: hr_utility.set_location(' Leaving:'||l_proc, 80);
212: --
213: when others then
214: --
215: -- A validation or unexpected error has occured

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

263: l_ovn per_cagr_grade_structures.object_version_number%TYPE := p_object_version_number;
264: --
265: begin
266: --
267: hr_utility.set_location('Entering:'|| l_proc, 10);
268: --
269: -- Issue a savepoint if operating in validation only mode
270: --
271: savepoint update_cagr_grade_structures;

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

269: -- Issue a savepoint if operating in validation only mode
270: --
271: savepoint update_cagr_grade_structures;
272: --
273: hr_utility.set_location(l_proc, 20);
274: --
275: -- Process Logic
276: --
277: l_object_version_number := p_object_version_number;

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

390: -- End of API User Hook for the after hook of update_cagr_grade_structures
391: --
392: end;
393: --
394: hr_utility.set_location(l_proc, 60);
395: --
396: -- When in validation only mode raise the Validate_Enabled exception
397: --
398: if p_validate then

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

402: -- Set all output arguments
403: --
404: p_object_version_number := l_object_version_number;
405: --
406: hr_utility.set_location(' Leaving:'||l_proc, 70);
407: --
408: exception
409: --
410: when hr_api.validate_enabled then

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

417: -- Only set output warning arguments
418: -- (Any key or derived arguments must be set to null
419: -- when validation only mode is being used.)
420: --
421: hr_utility.set_location(' Leaving:'||l_proc, 80);
422: --
423: when others then
424: --
425: -- A validation or unexpected error has occured

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

450: l_ovn per_cagr_grade_structures.object_version_number%TYPE := p_object_version_number;
451: --
452: begin
453: --
454: hr_utility.set_location('Entering:'|| l_proc, 10);
455: --
456: -- Issue a savepoint if operating in validation only mode
457: --
458: savepoint delete_cagr_grade_structures;

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

456: -- Issue a savepoint if operating in validation only mode
457: --
458: savepoint delete_cagr_grade_structures;
459: --
460: hr_utility.set_location(l_proc, 20);
461: --
462: -- Process Logic
463: --
464: l_object_version_number := p_object_version_number;

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

512: -- End of API User Hook for the after hook of delete_cagr_grade_structures
513: --
514: end;
515: --
516: hr_utility.set_location(l_proc, 60);
517: --
518: -- When in validation only mode raise the Validate_Enabled exception
519: --
520: if p_validate then

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

520: if p_validate then
521: raise hr_api.validate_enabled;
522: end if;
523: --
524: hr_utility.set_location(' Leaving:'||l_proc, 70);
525: --
526: exception
527: --
528: when hr_api.validate_enabled then

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

567: l_proc varchar2(72) := g_package||'lck';
568: --
569: begin
570: --
571: hr_utility.set_location('Entering:'|| l_proc, 10);
572: --
573: per_grs_shd.lck
574: (
575: p_cagr_grade_structure_id => p_cagr_grade_structure_id

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

576: ,p_object_version_number => p_object_version_number
577: ,p_effective_date => trunc(p_effective_date)
578: );
579: --
580: hr_utility.set_location(' Leaving:'||l_proc, 70);
581: --
582: end lck;
583: --
584: end hr_cagr_grade_structures_api;