DBA Data[Home] [Help]

APPS.BEN_COURT_ORDERS_API dependencies on HR_UTILITY

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

73: l_object_version_number ben_crt_ordr.object_version_number%TYPE;
74: --
75: begin
76: --
77: hr_utility.set_location('Entering:'|| l_proc, 10);
78: --
79: -- Issue a savepoint if operating in validation only mode
80: --
81: savepoint create_court_orders;

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

79: -- Issue a savepoint if operating in validation only mode
80: --
81: savepoint create_court_orders;
82: --
83: hr_utility.set_location(l_proc, 20);
84: --
85: -- Process Logic
86: --
87: begin

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

281: -- End of API User Hook for the after hook of create_court_orders
282: --
283: end;
284: --
285: hr_utility.set_location(l_proc, 60);
286: --
287: -- When in validation only mode raise the Validate_Enabled exception
288: --
289: if p_validate then

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

294: --
295: p_crt_ordr_id := l_crt_ordr_id;
296: p_object_version_number := l_object_version_number;
297: --
298: hr_utility.set_location(' Leaving:'||l_proc, 70);
299: --
300: exception
301: --
302: when hr_api.validate_enabled then

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

311: -- when validation only mode is being used.)
312: --
313: p_crt_ordr_id := null;
314: p_object_version_number := null;
315: hr_utility.set_location(' Leaving:'||l_proc, 80);
316: --
317: when others then
318: --
319: -- A validation or unexpected error has occured

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

391: l_object_version_number ben_crt_ordr.object_version_number%TYPE;
392: --
393: begin
394: --
395: hr_utility.set_location('Entering:'|| l_proc, 10);
396: --
397: -- Issue a savepoint if operating in validation only mode
398: --
399: savepoint update_court_orders;

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

397: -- Issue a savepoint if operating in validation only mode
398: --
399: savepoint update_court_orders;
400: --
401: hr_utility.set_location(l_proc, 20);
402: --
403: -- Process Logic
404: --
405: l_object_version_number := p_object_version_number;

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

602: -- End of API User Hook for the after hook of update_court_orders
603: --
604: end;
605: --
606: hr_utility.set_location(l_proc, 60);
607: --
608: -- When in validation only mode raise the Validate_Enabled exception
609: --
610: if p_validate then

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

614: -- Set all output arguments
615: --
616: p_object_version_number := l_object_version_number;
617: --
618: hr_utility.set_location(' Leaving:'||l_proc, 70);
619: --
620: exception
621: --
622: when hr_api.validate_enabled then

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

629: -- Only set output warning arguments
630: -- (Any key or derived arguments must be set to null
631: -- when validation only mode is being used.)
632: --
633: hr_utility.set_location(' Leaving:'||l_proc, 80);
634: --
635: when others then
636: --
637: -- A validation or unexpected error has occured

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

658: l_object_version_number ben_crt_ordr.object_version_number%TYPE;
659: --
660: begin
661: --
662: hr_utility.set_location('Entering:'|| l_proc, 10);
663: --
664: -- Issue a savepoint if operating in validation only mode
665: --
666: savepoint delete_court_orders;

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

664: -- Issue a savepoint if operating in validation only mode
665: --
666: savepoint delete_court_orders;
667: --
668: hr_utility.set_location(l_proc, 20);
669: --
670: -- Process Logic
671: --
672: l_object_version_number := p_object_version_number;

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

720: -- End of API User Hook for the after hook of delete_court_orders
721: --
722: end;
723: --
724: hr_utility.set_location(l_proc, 60);
725: --
726: -- When in validation only mode raise the Validate_Enabled exception
727: --
728: if p_validate then

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

728: if p_validate then
729: raise hr_api.validate_enabled;
730: end if;
731: --
732: hr_utility.set_location(' Leaving:'||l_proc, 70);
733: --
734: exception
735: --
736: when hr_api.validate_enabled then

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

771: l_proc varchar2(72) := g_package||'lck';
772: --
773: begin
774: --
775: hr_utility.set_location('Entering:'|| l_proc, 10);
776: --
777: ben_crt_shd.lck
778: (
779: p_crt_ordr_id => p_crt_ordr_id

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

779: p_crt_ordr_id => p_crt_ordr_id
780: ,p_object_version_number => p_object_version_number
781: );
782: --
783: hr_utility.set_location(' Leaving:'||l_proc, 70);
784: --
785: end lck;
786: --
787: end ben_court_orders_api;