DBA Data[Home] [Help]

APPS.PAY_CONTRIBUTION_HISTORY_API dependencies on HR_UTILITY

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

64: l_object_version_number pay_us_contribution_history.object_version_number%TYPE;
65: --
66: begin
67: --
68: hr_utility.set_location('Entering:'|| l_proc, 10);
69: --
70: -- Issue a savepoint if operating in validation only mode
71: --
72: savepoint create_Contribution_History;

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

70: -- Issue a savepoint if operating in validation only mode
71: --
72: savepoint create_Contribution_History;
73: --
74: hr_utility.set_location(l_proc, 20);
75: --
76: -- Process Logic
77: --
78: begin

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

245: -- End of API User Hook for the after hook of create_Contribution_History
246: --
247: end;
248: --
249: hr_utility.set_location(l_proc, 60);
250: --
251: -- When in validation only mode raise the Validate_Enabled exception
252: --
253: if p_validate then

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

258: --
259: p_contr_history_id := l_contr_history_id;
260: p_object_version_number := l_object_version_number;
261: --
262: hr_utility.set_location(' Leaving:'||l_proc, 70);
263: --
264: exception
265: --
266: when hr_api.validate_enabled then

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

275: -- when validation only mode is being used.)
276: --
277: p_contr_history_id := null;
278: p_object_version_number := null;
279: hr_utility.set_location(' Leaving:'||l_proc, 80);
280: --
281: when others then
282: --
283: -- A validation or unexpected error has occured

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

344: l_object_version_number pay_us_contribution_history.object_version_number%TYPE;
345: --
346: begin
347: --
348: hr_utility.set_location('Entering:'|| l_proc, 10);
349: --
350: -- Issue a savepoint if operating in validation only mode
351: --
352: savepoint update_Contribution_History;

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

350: -- Issue a savepoint if operating in validation only mode
351: --
352: savepoint update_Contribution_History;
353: --
354: hr_utility.set_location(l_proc, 20);
355: --
356: -- Process Logic
357: --
358: l_object_version_number := p_object_version_number;

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

528: -- End of API User Hook for the after hook of update_Contribution_History
529: --
530: end;
531: --
532: hr_utility.set_location(l_proc, 60);
533: --
534: -- When in validation only mode raise the Validate_Enabled exception
535: --
536: if p_validate then

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

540: -- Set all output arguments
541: --
542: p_object_version_number := l_object_version_number;
543: --
544: hr_utility.set_location(' Leaving:'||l_proc, 70);
545: --
546: exception
547: --
548: when hr_api.validate_enabled then

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

555: -- Only set output warning arguments
556: -- (Any key or derived arguments must be set to null
557: -- when validation only mode is being used.)
558: --
559: hr_utility.set_location(' Leaving:'||l_proc, 80);
560: --
561: when others then
562: --
563: -- A validation or unexpected error has occured

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

582: l_object_version_number pay_us_contribution_history.object_version_number%TYPE;
583: --
584: begin
585: --
586: hr_utility.set_location('Entering:'|| l_proc, 10);
587: --
588: -- Issue a savepoint if operating in validation only mode
589: --
590: savepoint delete_Contribution_History;

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

588: -- Issue a savepoint if operating in validation only mode
589: --
590: savepoint delete_Contribution_History;
591: --
592: hr_utility.set_location(l_proc, 20);
593: --
594: -- Process Logic
595: --
596: l_object_version_number := p_object_version_number;

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

641: -- End of API User Hook for the after hook of delete_Contribution_History
642: --
643: end;
644: --
645: hr_utility.set_location(l_proc, 60);
646: --
647: -- When in validation only mode raise the Validate_Enabled exception
648: --
649: if p_validate then

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

649: if p_validate then
650: raise hr_api.validate_enabled;
651: end if;
652: --
653: hr_utility.set_location(' Leaving:'||l_proc, 70);
654: --
655: exception
656: --
657: when hr_api.validate_enabled then

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

691: l_proc varchar2(72) := g_package||'lck';
692: --
693: begin
694: --
695: hr_utility.set_location('Entering:'|| l_proc, 10);
696: --
697: pay_con_shd.lck
698: (
699: p_contr_history_id => p_contr_history_id

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

699: p_contr_history_id => p_contr_history_id
700: ,p_object_version_number => p_object_version_number
701: );
702: --
703: hr_utility.set_location(' Leaving:'||l_proc, 70);
704: --
705: end lck;
706: --
707: end pay_Contribution_History_api;