DBA Data[Home] [Help]

APPS.OTA_CHAT_API dependencies on HR_UTILITY

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

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

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

116: p_chat_id := l_chat_id;
117: p_object_version_number := l_object_version_number;
118:
119:
120: hr_utility.set_location(' Leaving:'||l_proc, 70);
121: exception
122: when hr_api.validate_enabled then
123: --
124: -- As the Validate_Enabled exception has been raised

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

131: -- when validation only mode is being used.)
132: --
133: p_chat_id := null;
134: p_object_version_number := null;
135: hr_utility.set_location(' Leaving:'||l_proc, 80);
136: when others then
137: --
138: -- A validation or unexpected error has occured
139: --

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

139: --
140: rollback to CREATE_CHAT;
141: p_chat_id := null;
142: p_object_version_number := null;
143: hr_utility.set_location(' Leaving:'||l_proc, 90);
144: raise;
145: end create_chat;
146:
147:

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

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

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

248: end if;
249: --
250: -- Set all output arguments
251: --
252: hr_utility.set_location(' Leaving:'||l_proc, 70);
253: exception
254: when hr_api.validate_enabled then
255: --
256: -- As the Validate_Enabled exception has been raised

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

262: -- (Any key or derived arguments must be set to null
263: -- when validation only mode is being used.)
264: --
265: p_object_version_number := null;
266: hr_utility.set_location(' Leaving:'||l_proc, 80);
267: when others then
268: --
269: -- A validation or unexpected error has occured
270: --

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

269: -- A validation or unexpected error has occured
270: --
271: rollback to UPDATE_CHAT;
272: p_object_version_number := l_object_version_number;
273: hr_utility.set_location(' Leaving:'||l_proc, 90);
274: raise;
275: end update_chat;
276:
277:

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

292: l_object_version_id number;
293: --
294: --
295: begin
296: hr_utility.set_location('Entering:'|| l_proc, 10);
297: --
298: -- Issue a savepoint
299: --
300: savepoint DELETE_CHAT;

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

345: --
346: -- Set all output arguments
347: --
348: --
349: hr_utility.set_location(' Leaving:'||l_proc, 170);
350: exception
351: when hr_api.validate_enabled then
352: --
353: -- As the Validate_Enabled exception has been raised

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

358: -- Only set output warning arguments
359: -- (Any key or derived arguments must be set to null
360: -- when validation only mode is being used.)
361: --
362: hr_utility.set_location(' Leaving:'||l_proc, 180);
363: when others then
364: --
365: -- A validation or unexpected error has occured
366: --

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

364: --
365: -- A validation or unexpected error has occured
366: --
367: rollback to DELETE_CHAT;
368: hr_utility.set_location(' Leaving:'||l_proc, 190);
369: raise;
370: end delete_chat;
371:
372: --