DBA Data[Home] [Help]

APPS.PER_EVENTS_API dependencies on HR_UTILITY

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

62: l_date_start date;
63: l_date_end date;
64:
65: begin
66: hr_utility.set_location('Entering:'|| l_proc, 10);
67: --
68: -- Issue a savepoint
69: --
70: savepoint create_event;

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

228: --
229: p_event_id := l_event_id;
230: p_object_version_number := l_object_version_number;
231: --
232: hr_utility.set_location(' Leaving:'||l_proc, 70);
233: exception
234: when hr_api.validate_enabled then
235: --
236: -- As the Validate_Enabled exception has been raised

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

243: -- when validation only mode is being used.)
244: --
245: p_event_id := null;
246: p_object_version_number := null;
247: hr_utility.set_location(' Leaving:'||l_proc, 80);
248: when others then
249: --
250: -- A validation or unexpected error has occured
251: --

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

254: -- set in out parameters and set out parameters
255: --
256: p_event_id := null;
257: p_object_version_number := null;
258: hr_utility.set_location(' Leaving:'||l_proc, 90);
259: raise;
260: end create_event;
261:
262: --

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

316: l_date_end date; l_ovn number := p_object_version_number;
317: l_temp_event_id number := p_event_id;
318:
319: begin
320: hr_utility.set_location('Entering:'|| l_proc, 10);
321: --
322: -- Issue a savepoint
323: --
324: savepoint update_event;

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

487: --
488: p_event_id := l_event_id;
489: p_object_version_number := l_object_version_number;
490: --
491: hr_utility.set_location(' Leaving:'||l_proc, 70);
492: exception
493: when hr_api.validate_enabled then
494: --
495: -- As the Validate_Enabled exception has been raised

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

502: -- when validation only mode is being used.)
503: --
504: p_event_id := null;
505: p_object_version_number := null;
506: hr_utility.set_location(' Leaving:'||l_proc, 80);
507: when others then
508: --
509: -- A validation or unexpected error has occured
510: --

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

513: -- set in out parameters and set out parameters
514: --
515: p_event_id := l_temp_event_id;
516: p_object_version_number := l_ovn;
517: hr_utility.set_location(' Leaving:'||l_proc, 90);
518: raise;
519: end update_event;
520:
521: --

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

535: l_proc varchar2(72) := g_package||'delete_event';
536: l_event_id number;
537: l_object_version_number number;
538: begin
539: hr_utility.set_location('Entering:'|| l_proc, 10);
540: --
541: -- Issue a savepoint
542: --
543: savepoint delete_event;

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

590: --
591: if p_validate then
592: raise hr_api.validate_enabled;
593: end if;
594: hr_utility.set_location(' Leaving:'||l_proc, 70);
595:
596: exception
597: when hr_api.validate_enabled then
598: --

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

604: -- Only set output warning arguments
605: -- (Any key or derived arguments must be set to null
606: -- when validation only mode is being used.)
607: --
608: hr_utility.set_location(' Leaving:'||l_proc, 80);
609: when others then
610: --
611: -- A validation or unexpected error has occured
612: --

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

610: --
611: -- A validation or unexpected error has occured
612: --
613: rollback to delete_event;
614: hr_utility.set_location(' Leaving:'||l_proc, 90);
615: raise;
616: end delete_event;
617:
618: --