DBA Data[Home] [Help]

APPS.OTA_FORUM_MESSAGE_API dependencies on HR_UTILITY

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

32: l_object_version_number number;
33: l_effective_date date;
34: l_end_date date;
35: begin
36: hr_utility.set_location('Entering:'|| l_proc, 10);
37: --
38: -- Issue a savepoint
39: --
40: savepoint CREATE_FORUM_MESSAGE;

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

140: ota_initialization_wf.Init_forum_notif(p_forum_id => p_forum_id,
141: p_forum_message_id => l_forum_message_id );
142: end if;
143:
144: hr_utility.set_location(' Leaving:'||l_proc, 70);
145: exception
146: when hr_api.validate_enabled then
147: --
148: -- As the Validate_Enabled exception has been raised

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

155: -- when validation only mode is being used.)
156: --
157: p_forum_message_id := null;
158: p_object_version_number := null;
159: hr_utility.set_location(' Leaving:'||l_proc, 80);
160: when others then
161: --
162: -- A validation or unexpected error has occured
163: --

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

163: --
164: rollback to CREATE_FORUM_MESSAGE;
165: p_forum_message_id := null;
166: p_object_version_number := null;
167: hr_utility.set_location(' Leaving:'||l_proc, 90);
168: raise;
169: end create_forum_message;
170: --
171: --

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

196: l_object_version_number number := p_object_version_number;
197: l_effective_date date;
198: l_end_date date;
199: begin
200: hr_utility.set_location('Entering:'|| l_proc, 10);
201: --
202: -- Issue a savepoint
203: --
204: savepoint UPDATE_FORUM_MESSAGE;

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

294: raise hr_api.validate_enabled;
295: end if;
296: --
297:
298: hr_utility.set_location(' Leaving:'||l_proc, 70);
299: exception
300: when hr_api.validate_enabled then
301: --
302: -- As the Validate_Enabled exception has been raised

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

308: -- (Any key or derived arguments must be set to null
309: -- when validation only mode is being used.)
310: --
311: p_object_version_number := null;
312: hr_utility.set_location(' Leaving:'||l_proc, 80);
313: when others then
314: --
315: -- A validation or unexpected error has occured
316: --

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

315: -- A validation or unexpected error has occured
316: --
317: rollback to UPDATE_FORUM_MESSAGE;
318: p_object_version_number := l_object_version_number;
319: hr_utility.set_location(' Leaving:'||l_proc, 90);
320: raise;
321: end update_forum_message;
322: --
323: -- ----------------------------------------------------------------------------

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

347: v_object_version_number number;
348: --
349: --
350: begin
351: hr_utility.set_location('Entering:'|| l_proc, 10);
352: --
353: -- Issue a savepoint
354: --
355: savepoint DELETE_FORUM_MESSAGE;

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

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

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

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

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

444: --
445: -- A validation or unexpected error has occured
446: --
447: rollback to DELETE_FORUM_MESSAGE;
448: hr_utility.set_location(' Leaving:'||l_proc, 190);
449: raise;
450: end delete_forum_message;
451: --
452: end ota_forum_message_api;