DBA Data[Home] [Help]

APPS.BEN_DESIGN_RQMT_API dependencies on HR_UTILITY

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

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

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

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

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

257: -- End of API User Hook for the after hook of create_design_rqmt
258: --
259: end;
260: --
261: hr_utility.set_location(l_proc, 60);
262: --
263: -- When in validation only mode raise the Validate_Enabled exception
264: --
265: if p_validate then

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

272: p_effective_start_date := l_effective_start_date;
273: p_effective_end_date := l_effective_end_date;
274: p_object_version_number := l_object_version_number;
275: --
276: hr_utility.set_location(' Leaving:'||l_proc, 70);
277: --
278: exception
279: --
280: when hr_api.validate_enabled then

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

291: p_dsgn_rqmt_id := null;
292: p_effective_start_date := null;
293: p_effective_end_date := null;
294: p_object_version_number := null;
295: hr_utility.set_location(' Leaving:'||l_proc, 80);
296: --
297: when others then
298: --
299: -- A validation or unexpected error has occured

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

372: l_effective_end_date ben_dsgn_rqmt_f.effective_end_date%TYPE;
373: --
374: begin
375: --
376: hr_utility.set_location('Entering:'|| l_proc, 10);
377: --
378: -- Issue a savepoint if operating in validation only mode
379: --
380: savepoint update_design_rqmt;

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

378: -- Issue a savepoint if operating in validation only mode
379: --
380: savepoint update_design_rqmt;
381: --
382: hr_utility.set_location(l_proc, 20);
383: --
384: -- Process Logic
385: --
386: l_object_version_number := p_object_version_number;

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

566: -- End of API User Hook for the after hook of update_design_rqmt
567: --
568: end;
569: --
570: hr_utility.set_location(l_proc, 60);
571: --
572: -- When in validation only mode raise the Validate_Enabled exception
573: --
574: if p_validate then

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

580: p_object_version_number := l_object_version_number;
581: p_effective_start_date := l_effective_start_date;
582: p_effective_end_date := l_effective_end_date;
583: --
584: hr_utility.set_location(' Leaving:'||l_proc, 70);
585: --
586: exception
587: --
588: when hr_api.validate_enabled then

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

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

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

638: l_effective_end_date ben_dsgn_rqmt_f.effective_end_date%TYPE;
639: --
640: begin
641: --
642: hr_utility.set_location('Entering:'|| l_proc, 10);
643: --
644: -- Issue a savepoint if operating in validation only mode
645: --
646: savepoint delete_design_rqmt;

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

644: -- Issue a savepoint if operating in validation only mode
645: --
646: savepoint delete_design_rqmt;
647: --
648: hr_utility.set_location(l_proc, 20);
649: --
650: -- Process Logic
651: --
652: l_object_version_number := p_object_version_number;

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

707: -- End of API User Hook for the after hook of delete_design_rqmt
708: --
709: end;
710: --
711: hr_utility.set_location(l_proc, 60);
712: --
713: -- When in validation only mode raise the Validate_Enabled exception
714: --
715: if p_validate then

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

715: if p_validate then
716: raise hr_api.validate_enabled;
717: end if;
718: --
719: hr_utility.set_location(' Leaving:'||l_proc, 70);
720: --
721: exception
722: --
723: when hr_api.validate_enabled then

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

770: l_validation_end_date date;
771: --
772: begin
773: --
774: hr_utility.set_location('Entering:'|| l_proc, 10);
775: --
776: ben_ddr_shd.lck
777: (
778: p_dsgn_rqmt_id => p_dsgn_rqmt_id

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

782: ,p_effective_date => p_effective_date
783: ,p_datetrack_mode => p_datetrack_mode
784: );
785: --
786: hr_utility.set_location(' Leaving:'||l_proc, 70);
787: --
788: end lck;
789: --
790: end ben_design_rqmt_api;