DBA Data[Home] [Help]

APPS.BEN_REPORTING_GROUP_API dependencies on HR_UTILITY

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

61: l_object_version_number ben_rptg_grp.object_version_number%TYPE;
62: --
63: begin
64: --
65: hr_utility.set_location('Entering:'|| l_proc, 10);
66: --
67: -- Issue a savepoint if operating in validation only mode
68: --
69: savepoint create_Reporting_Group;

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

67: -- Issue a savepoint if operating in validation only mode
68: --
69: savepoint create_Reporting_Group;
70: --
71: hr_utility.set_location(l_proc, 20);
72: --
73: -- Process Logic
74: --
75: begin

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

233: -- End of API User Hook for the after hook of create_Reporting_Group
234: --
235: end;
236: --
237: hr_utility.set_location(l_proc, 60);
238: --
239: -- When in validation only mode raise the Validate_Enabled exception
240: --
241: if p_validate then

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

246: --
247: p_rptg_grp_id := l_rptg_grp_id;
248: p_object_version_number := l_object_version_number;
249: --
250: hr_utility.set_location(' Leaving:'||l_proc, 70);
251: --
252: exception
253: --
254: when hr_api.validate_enabled then

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

263: -- when validation only mode is being used.)
264: --
265: p_rptg_grp_id := null;
266: p_object_version_number := null;
267: hr_utility.set_location(' Leaving:'||l_proc, 80);
268: --
269: when others then
270: --
271: -- A validation or unexpected error has occured

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

272: --
273: ROLLBACK TO create_Reporting_Group;
274: p_rptg_grp_id := null;
275: p_object_version_number := null;
276: hr_utility.set_location(' Leaving:'||l_proc, 90);
277: raise;
278: --
279: end create_Reporting_Group;
280: -- ----------------------------------------------------------------------------

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

332: l_object_version_number ben_rptg_grp.object_version_number%TYPE;
333: --
334: begin
335: --
336: hr_utility.set_location('Entering:'|| l_proc, 10);
337: --
338: -- Issue a savepoint if operating in validation only mode
339: --
340: savepoint update_Reporting_Group;

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

338: -- Issue a savepoint if operating in validation only mode
339: --
340: savepoint update_Reporting_Group;
341: --
342: hr_utility.set_location(l_proc, 20);
343: --
344: -- Process Logic
345: --
346: l_object_version_number := p_object_version_number;

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

507: -- End of API User Hook for the after hook of update_Reporting_Group
508: --
509: end;
510: --
511: hr_utility.set_location(l_proc, 60);
512: --
513: -- When in validation only mode raise the Validate_Enabled exception
514: --
515: if p_validate then

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

519: -- Set all output arguments
520: --
521: p_object_version_number := l_object_version_number;
522: --
523: hr_utility.set_location(' Leaving:'||l_proc, 70);
524: --
525: exception
526: --
527: when hr_api.validate_enabled then

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

534: -- Only set output warning arguments
535: -- (Any key or derived arguments must be set to null
536: -- when validation only mode is being used.)
537: --
538: hr_utility.set_location(' Leaving:'||l_proc, 80);
539: --
540: when others then
541: --
542: -- A validation or unexpected error has occured

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

562: l_object_version_number ben_rptg_grp.object_version_number%TYPE;
563: --
564: begin
565: --
566: hr_utility.set_location('Entering:'|| l_proc, 10);
567: --
568: -- Issue a savepoint if operating in validation only mode
569: --
570: savepoint delete_Reporting_Group;

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

568: -- Issue a savepoint if operating in validation only mode
569: --
570: savepoint delete_Reporting_Group;
571: --
572: hr_utility.set_location(l_proc, 20);
573: --
574: -- Process Logic
575: --
576: l_object_version_number := p_object_version_number;

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

624: -- End of API User Hook for the after hook of delete_Reporting_Group
625: --
626: end;
627: --
628: hr_utility.set_location(l_proc, 60);
629: --
630: -- When in validation only mode raise the Validate_Enabled exception
631: --
632: if p_validate then

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

632: if p_validate then
633: raise hr_api.validate_enabled;
634: end if;
635: --
636: hr_utility.set_location(' Leaving:'||l_proc, 70);
637: --
638: exception
639: --
640: when hr_api.validate_enabled then

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

674: l_proc varchar2(72) := g_package||'lck';
675: --
676: begin
677: --
678: hr_utility.set_location('Entering:'|| l_proc, 10);
679: --
680: ben_bnr_shd.lck
681: (
682: p_rptg_grp_id => p_rptg_grp_id

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

682: p_rptg_grp_id => p_rptg_grp_id
683: ,p_object_version_number => p_object_version_number
684: );
685: --
686: hr_utility.set_location(' Leaving:'||l_proc, 70);
687: --
688: end lck;
689: --
690: end ben_Reporting_Group_api;