DBA Data[Home] [Help]

APPS.BEN_EXTRA_INPUT_VALUE_API dependencies on HR_UTILITY

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

62: --
63:
64: begin
65: --
66: hr_utility.set_location('Entering:'|| l_proc, 10);
67: --
68: -- Issue a savepoint if operating in validation only mode
69: --
70: savepoint create_extra_input_value;

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

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

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

233: -- End of API User Hook for the after hook of create_extra_input_value
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_extra_input_value_id := l_extra_input_value_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_extra_input_value_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 333: hr_utility.set_location('Entering:'|| l_proc, 10);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

626: if p_validate then
627: raise hr_api.validate_enabled;
628: end if;
629: --
630: hr_utility.set_location(' Leaving:'||l_proc, 70);
631: --
632: exception
633: --
634: 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_eiv_shd.lck
677: (
678: p_extra_input_value_id => p_extra_input_value_id

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

678: p_extra_input_value_id => p_extra_input_value_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_extra_input_value_api;