DBA Data[Home] [Help]

APPS.BEN_EXT_RCD_API dependencies on HR_UTILITY

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

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

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

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

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

229: -- End of API User Hook for the after hook of create_EXT_RCD
230: --
231: end;
232: --
233: hr_utility.set_location(l_proc, 60);
234: --
235: -- When in validation only mode raise the Validate_Enabled exception
236: --
237: if p_validate then

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

242: --
243: p_ext_rcd_id := l_ext_rcd_id;
244: p_object_version_number := l_object_version_number;
245: --
246: hr_utility.set_location(' Leaving:'||l_proc, 70);
247: --
248: exception
249: --
250: when hr_api.validate_enabled then

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

259: -- when validation only mode is being used.)
260: --
261: p_ext_rcd_id := null;
262: p_object_version_number := null;
263: hr_utility.set_location(' Leaving:'||l_proc, 80);
264: --
265: when others then
266: --
267: -- A validation or unexpected error has occured

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

327: l_object_version_number ben_ext_rcd.object_version_number%TYPE;
328: --
329: begin
330: --
331: hr_utility.set_location('Entering:'|| l_proc, 10);
332: --
333: -- Issue a savepoint if operating in validation only mode
334: --
335: savepoint update_EXT_RCD;

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

333: -- Issue a savepoint if operating in validation only mode
334: --
335: savepoint update_EXT_RCD;
336: --
337: hr_utility.set_location(l_proc, 20);
338: --
339: -- Process Logic
340: --
341: l_object_version_number := p_object_version_number;

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

499: -- End of API User Hook for the after hook of update_EXT_RCD
500: --
501: end;
502: --
503: hr_utility.set_location(l_proc, 60);
504: --
505: -- When in validation only mode raise the Validate_Enabled exception
506: --
507: if p_validate then

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

511: -- Set all output arguments
512: --
513: p_object_version_number := l_object_version_number;
514: --
515: hr_utility.set_location(' Leaving:'||l_proc, 70);
516: --
517: exception
518: --
519: when hr_api.validate_enabled then

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

526: -- Only set output warning arguments
527: -- (Any key or derived arguments must be set to null
528: -- when validation only mode is being used.)
529: --
530: hr_utility.set_location(' Leaving:'||l_proc, 80);
531: --
532: when others then
533: --
534: -- A validation or unexpected error has occured

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

555: l_object_version_number ben_ext_rcd.object_version_number%TYPE;
556: --
557: begin
558: --
559: hr_utility.set_location('Entering:'|| l_proc, 10);
560: --
561: -- Issue a savepoint if operating in validation only mode
562: --
563: savepoint delete_EXT_RCD;

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

561: -- Issue a savepoint if operating in validation only mode
562: --
563: savepoint delete_EXT_RCD;
564: --
565: hr_utility.set_location(l_proc, 20);
566: --
567: -- Process Logic
568: --
569: l_object_version_number := p_object_version_number;

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

620: -- End of API User Hook for the after hook of delete_EXT_RCD
621: --
622: end;
623: --
624: hr_utility.set_location(l_proc, 60);
625: --
626: -- When in validation only mode raise the Validate_Enabled exception
627: --
628: if p_validate then

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

628: if p_validate then
629: raise hr_api.validate_enabled;
630: end if;
631: --
632: hr_utility.set_location(' Leaving:'||l_proc, 70);
633: --
634: exception
635: --
636: when hr_api.validate_enabled then

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

670: l_proc varchar2(72) := g_package||'lck';
671: --
672: begin
673: --
674: hr_utility.set_location('Entering:'|| l_proc, 10);
675: --
676: ben_xrc_shd.lck
677: (
678: p_ext_rcd_id => p_ext_rcd_id

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

678: p_ext_rcd_id => p_ext_rcd_id
679: ,p_object_version_number => p_object_version_number
680: );
681: --
682: hr_utility.set_location(' Leaving:'||l_proc, 70);
683: --
684: end lck;
685: --
686: end ben_EXT_RCD_api;