DBA Data[Home] [Help]

APPS.BEN_EXT_DEFN_API dependencies on HR_UTILITY

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

78: l_object_version_number ben_ext_dfn.object_version_number%TYPE;
79: --
80: begin
81: --
82: hr_utility.set_location('Entering:'|| l_proc, 10);
83: --
84: -- Issue a savepoint if operating in validation only mode
85: --
86: savepoint create_EXT_DEFN;

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

84: -- Issue a savepoint if operating in validation only mode
85: --
86: savepoint create_EXT_DEFN;
87: --
88: hr_utility.set_location(l_proc, 20);
89: --
90: -- Process Logic
91: --
92: begin

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

301: -- End of API User Hook for the after hook of create_EXT_DEFN
302: --
303: end;
304: --
305: hr_utility.set_location(l_proc, 60);
306: --
307: -- When in validation only mode raise the Validate_Enabled exception
308: --
309: if p_validate then

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

314: --
315: p_ext_dfn_id := l_ext_dfn_id;
316: p_object_version_number := l_object_version_number;
317: --
318: hr_utility.set_location(' Leaving:'||l_proc, 70);
319: --
320: exception
321: --
322: when hr_api.validate_enabled then

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

331: -- when validation only mode is being used.)
332: --
333: p_ext_dfn_id := null;
334: p_object_version_number := null;
335: hr_utility.set_location(' Leaving:'||l_proc, 80);
336: --
337: when others then
338: --
339: -- A validation or unexpected error has occured

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

343: -- NOCOPY changes.
344: --
345: p_ext_dfn_id := null;
346: p_object_version_number := null;
347: hr_utility.set_location(' Leaving:'||l_proc, 90);
348: --
349: raise;
350: --
351: end create_EXT_DEFN;

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

421: l_object_version_number ben_ext_dfn.object_version_number%TYPE;
422: --
423: begin
424: --
425: hr_utility.set_location('Entering:'|| l_proc, 10);
426: --
427: -- Issue a savepoint if operating in validation only mode
428: --
429: savepoint update_EXT_DEFN;

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

427: -- Issue a savepoint if operating in validation only mode
428: --
429: savepoint update_EXT_DEFN;
430: --
431: hr_utility.set_location(l_proc, 20);
432: --
433: -- Process Logic
434: --
435: l_object_version_number := p_object_version_number;

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

647: -- End of API User Hook for the after hook of update_EXT_DEFN
648: --
649: end;
650: --
651: hr_utility.set_location(l_proc, 60);
652: --
653: -- When in validation only mode raise the Validate_Enabled exception
654: --
655: if p_validate then

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

659: -- Set all output arguments
660: --
661: p_object_version_number := l_object_version_number;
662: --
663: hr_utility.set_location(' Leaving:'||l_proc, 70);
664: --
665: exception
666: --
667: when hr_api.validate_enabled then

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

674: -- Only set output warning arguments
675: -- (Any key or derived arguments must be set to null
676: -- when validation only mode is being used.)
677: --
678: hr_utility.set_location(' Leaving:'||l_proc, 80);
679: --
680: when others then
681: --
682: -- A validation or unexpected error has occured

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

685: --
686: -- NOCOPY changes.
687: --
688: p_object_version_number := l_object_version_number;
689: hr_utility.set_location(' Leaving:'||l_proc, 90);
690: --
691: raise;
692: --
693: end update_EXT_DEFN;

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

708: l_object_version_number ben_ext_dfn.object_version_number%TYPE;
709: --
710: begin
711: --
712: hr_utility.set_location('Entering:'|| l_proc, 10);
713: --
714: -- Issue a savepoint if operating in validation only mode
715: --
716: savepoint delete_EXT_DEFN;

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

714: -- Issue a savepoint if operating in validation only mode
715: --
716: savepoint delete_EXT_DEFN;
717: --
718: hr_utility.set_location(l_proc, 20);
719: --
720: -- Process Logic
721: --
722: l_object_version_number := p_object_version_number;

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

770: -- End of API User Hook for the after hook of delete_EXT_DEFN
771: --
772: end;
773: --
774: hr_utility.set_location(l_proc, 60);
775: --
776: -- When in validation only mode raise the Validate_Enabled exception
777: --
778: if p_validate then

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

778: if p_validate then
779: raise hr_api.validate_enabled;
780: end if;
781: --
782: hr_utility.set_location(' Leaving:'||l_proc, 70);
783: --
784: exception
785: --
786: when hr_api.validate_enabled then

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

803: --
804: -- NOCOPY changes.
805: --
806: p_object_version_number := l_object_version_number;
807: hr_utility.set_location(' Leaving:'||l_proc, 90);
808: --
809: raise;
810: --
811: end delete_EXT_DEFN;

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

826: l_proc varchar2(72) := g_package||'lck';
827: --
828: begin
829: --
830: hr_utility.set_location('Entering:'|| l_proc, 10);
831: --
832: ben_xdf_shd.lck
833: (
834: p_ext_dfn_id => p_ext_dfn_id

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

834: p_ext_dfn_id => p_ext_dfn_id
835: ,p_object_version_number => p_object_version_number
836: );
837: --
838: hr_utility.set_location(' Leaving:'||l_proc, 70);
839: --
840: end lck;
841: --
842: end ben_EXT_DEFN_api;