DBA Data[Home] [Help]

APPS.BEN_EXT_FILE_API dependencies on HR_UTILITY

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

60: l_object_version_number ben_ext_file.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_FILE;

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

66: -- Issue a savepoint if operating in validation only mode
67: --
68: savepoint create_EXT_FILE;
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_FILE
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_file_id := l_ext_file_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_file_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 328: hr_utility.set_location('Entering:'|| l_proc, 10);

324: l_object_version_number ben_ext_file.object_version_number%TYPE;
325: --
326: begin
327: --
328: hr_utility.set_location('Entering:'|| l_proc, 10);
329: --
330: -- Issue a savepoint if operating in validation only mode
331: --
332: savepoint update_EXT_FILE;

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

330: -- Issue a savepoint if operating in validation only mode
331: --
332: savepoint update_EXT_FILE;
333: --
334: hr_utility.set_location(l_proc, 20);
335: --
336: -- Process Logic
337: --
338: l_object_version_number := p_object_version_number;

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

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

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

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

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

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

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

551: l_object_version_number ben_ext_file.object_version_number%TYPE;
552: --
553: begin
554: --
555: hr_utility.set_location('Entering:'|| l_proc, 10);
556: --
557: -- Issue a savepoint if operating in validation only mode
558: --
559: savepoint delete_EXT_FILE;

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

557: -- Issue a savepoint if operating in validation only mode
558: --
559: savepoint delete_EXT_FILE;
560: --
561: hr_utility.set_location(l_proc, 20);
562: --
563: -- Process Logic
564: --
565: l_object_version_number := p_object_version_number;

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

613: -- End of API User Hook for the after hook of delete_EXT_FILE
614: --
615: end;
616: --
617: hr_utility.set_location(l_proc, 60);
618: --
619: -- When in validation only mode raise the Validate_Enabled exception
620: --
621: if p_validate then

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

621: if p_validate then
622: raise hr_api.validate_enabled;
623: end if;
624: --
625: hr_utility.set_location(' Leaving:'||l_proc, 70);
626: --
627: exception
628: --
629: when hr_api.validate_enabled then

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

663: l_proc varchar2(72) := g_package||'lck';
664: --
665: begin
666: --
667: hr_utility.set_location('Entering:'|| l_proc, 10);
668: --
669: ben_xfi_shd.lck
670: (
671: p_ext_file_id => p_ext_file_id

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

671: p_ext_file_id => p_ext_file_id
672: ,p_object_version_number => p_object_version_number
673: );
674: --
675: hr_utility.set_location(' Leaving:'||l_proc, 70);
676: --
677: end lck;
678: --
679: end ben_EXT_FILE_api;