DBA Data[Home] [Help]

APPS.OTA_CHAT_MESSAGE_API dependencies on HR_UTILITY

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

29: l_object_version_number number;
30: l_effective_date date;
31: l_end_date date;
32: begin
33: hr_utility.set_location('Entering:'|| l_proc, 10);
34: --
35: -- Issue a savepoint
36: --
37: savepoint CREATE_CHAT_MESSAGE;

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

120: p_chat_message_id := l_chat_message_id;
121: p_object_version_number := l_object_version_number;
122:
123:
124: hr_utility.set_location(' Leaving:'||l_proc, 70);
125: exception
126: when hr_api.validate_enabled then
127: --
128: -- As the Validate_Enabled exception has been raised

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

135: -- when validation only mode is being used.)
136: --
137: p_chat_message_id := null;
138: p_object_version_number := null;
139: hr_utility.set_location(' Leaving:'||l_proc, 80);
140: when others then
141: --
142: -- A validation or unexpected error has occured
143: --

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

143: --
144: rollback to CREATE_CHAT_MESSAGE;
145: p_chat_message_id := null;
146: p_object_version_number := null;
147: hr_utility.set_location(' Leaving:'||l_proc, 90);
148: raise;
149: end create_chat_message;
150: --
151: -- ----------------------------------------------------------------------------

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

172: l_object_version_number number := p_object_version_number;
173: l_effective_date date;
174: l_end_date date;
175: begin
176: hr_utility.set_location('Entering:'|| l_proc, 10);
177: --
178: -- Issue a savepoint
179: --
180: savepoint UPDATE_CHAT_MESSAGE;

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

260: end if;
261: --
262: -- Set all output arguments
263: --
264: hr_utility.set_location(' Leaving:'||l_proc, 70);
265: exception
266: when hr_api.validate_enabled then
267: --
268: -- As the Validate_Enabled exception has been raised

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

274: -- (Any key or derived arguments must be set to null
275: -- when validation only mode is being used.)
276: --
277: p_object_version_number := null;
278: hr_utility.set_location(' Leaving:'||l_proc, 80);
279: when others then
280: --
281: -- A validation or unexpected error has occured
282: --

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

281: -- A validation or unexpected error has occured
282: --
283: rollback to UPDATE_CHAT_MESSAGE;
284: p_object_version_number := null;
285: hr_utility.set_location(' Leaving:'||l_proc, 90);
286: raise;
287: end update_chat_message;
288: --
289: -- ----------------------------------------------------------------------------

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

302: l_object_version_id number;
303: --
304: --
305: begin
306: hr_utility.set_location('Entering:'|| l_proc, 10);
307: --
308: -- Issue a savepoint
309: --
310: savepoint DELETE_CHAT_MESSAGE;

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

362: --
363: -- Set all output arguments
364: --
365: --
366: hr_utility.set_location(' Leaving:'||l_proc, 170);
367: exception
368: when hr_api.validate_enabled then
369: --
370: -- As the Validate_Enabled exception has been raised

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

375: -- Only set output warning arguments
376: -- (Any key or derived arguments must be set to null
377: -- when validation only mode is being used.)
378: --
379: hr_utility.set_location(' Leaving:'||l_proc, 180);
380: when others then
381: --
382: -- A validation or unexpected error has occured
383: --

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

381: --
382: -- A validation or unexpected error has occured
383: --
384: rollback to DELETE_CHAT_MESSAGE;
385: hr_utility.set_location(' Leaving:'||l_proc, 190);
386: raise;
387: end delete_chat_message;
388: --
389: end ota_chat_message_api;