DBA Data[Home] [Help]

APPS.OTA_ANNOUNCEMENT_API dependencies on HR_UTILITY

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

49: l_object_version_number number;
50: l_effective_date date;
51: l_end_date date;
52: begin
53: hr_utility.set_location('Entering:'|| l_proc, 10);
54: --
55: -- Issue a savepoint
56: --
57: savepoint CREATE_ANNOUNCEMENT;

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

204: p_announcement_id := l_announcement_id;
205: p_object_version_number := l_object_version_number;
206:
207:
208: hr_utility.set_location(' Leaving:'||l_proc, 70);
209: exception
210: when hr_api.validate_enabled then
211: --
212: -- As the Validate_Enabled exception has been raised

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

219: -- when validation only mode is being used.)
220: --
221: p_announcement_id := null;
222: p_object_version_number := null;
223: hr_utility.set_location(' Leaving:'||l_proc, 80);
224: when others then
225: --
226: -- A validation or unexpected error has occured
227: --

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

227: --
228: rollback to CREATE_ANNOUNCEMENT;
229: p_announcement_id := null;
230: p_object_version_number := null;
231: hr_utility.set_location(' Leaving:'||l_proc, 90);
232: raise;
233: end create_announcement;
234: -- ----------------------------------------------------------------------------
235: -- |----------------------------< update_announcement >-----------------------|

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

275: l_effective_date date;
276: l_object_version_number number := p_object_version_number;
277: l_end_date date;
278: begin
279: hr_utility.set_location('Entering:'|| l_proc, 10);
280: --
281: -- Issue a savepoint
282: --
283: savepoint UPDATE_ANNOUNCEMENT;

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

423: end if;
424: --
425: -- Set all output arguments
426: --
427: hr_utility.set_location(' Leaving:'||l_proc, 70);
428: exception
429: when hr_api.validate_enabled then
430: --
431: -- As the Validate_Enabled exception has been raised

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

437: -- (Any key or derived arguments must be set to null
438: -- when validation only mode is being used.)
439: --
440: p_object_version_number := null;
441: hr_utility.set_location(' Leaving:'||l_proc, 80);
442: when others then
443: --
444: -- A validation or unexpected error has occured
445: --

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

444: -- A validation or unexpected error has occured
445: --
446: rollback to UPDATE_ANNOUNCEMENT;
447: p_object_version_number := l_object_version_number;
448: hr_utility.set_location(' Leaving:'||l_proc, 90);
449: raise;
450: end update_announcement;
451: --
452: -- ----------------------------------------------------------------------------

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

465: l_object_version_id number;
466: --
467: --
468: begin
469: hr_utility.set_location('Entering:'|| l_proc, 10);
470: --
471: -- Issue a savepoint
472: --
473: savepoint DELETE_ANNOUNCEMENT;

Line 536: hr_utility.set_location(' Leaving:'||l_proc, 170);

532: --
533: -- Set all output arguments
534: --
535: --
536: hr_utility.set_location(' Leaving:'||l_proc, 170);
537: exception
538: when hr_api.validate_enabled then
539: --
540: -- As the Validate_Enabled exception has been raised

Line 549: hr_utility.set_location(' Leaving:'||l_proc, 180);

545: -- Only set output warning arguments
546: -- (Any key or derived arguments must be set to null
547: -- when validation only mode is being used.)
548: --
549: hr_utility.set_location(' Leaving:'||l_proc, 180);
550: when others then
551: --
552: -- A validation or unexpected error has occured
553: --

Line 555: hr_utility.set_location(' Leaving:'||l_proc, 190);

551: --
552: -- A validation or unexpected error has occured
553: --
554: rollback to DELETE_ANNOUNCEMENT;
555: hr_utility.set_location(' Leaving:'||l_proc, 190);
556: raise;
557: end delete_announcement;
558: --
559: end ota_announcement_api;