DBA Data[Home] [Help]

APPS.OTA_CHAT_USER_API dependencies on HR_UTILITY

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

25: l_object_version_number number;
26: l_effective_date date;
27: l_end_date date;
28: begin
29: hr_utility.set_location('Entering:'|| l_proc, 10);
30: --
31: -- Issue a savepoint
32: --
33: savepoint CREATE_CHAT_USER;

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

107: --
108: p_object_version_number := l_object_version_number;
109:
110:
111: hr_utility.set_location(' Leaving:'||l_proc, 70);
112: exception
113: when hr_api.validate_enabled then
114: --
115: -- As the Validate_Enabled exception has been raised

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

121: -- (Any key or derived arguments must be set to null
122: -- when validation only mode is being used.)
123: --
124: p_object_version_number := null;
125: hr_utility.set_location(' Leaving:'||l_proc, 80);
126: when others then
127: --
128: -- A validation or unexpected error has occured
129: --

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

128: -- A validation or unexpected error has occured
129: --
130: rollback to CREATE_CHAT_USER;
131: p_object_version_number := null;
132: hr_utility.set_location(' Leaving:'||l_proc, 90);
133: raise;
134: end create_chat_user;
135:
136: --

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

155: l_object_version_number number := p_object_version_number;
156: l_effective_date date := trunc(p_effective_date);
157: l_end_date date;
158: begin
159: hr_utility.set_location('Entering:'|| l_proc, 10);
160: --
161: -- Issue a savepoint
162: --
163: savepoint UPDATE_CHAT_USER;

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

229: raise hr_api.validate_enabled;
230: end if;
231: --
232:
233: hr_utility.set_location(' Leaving:'||l_proc, 70);
234: exception
235: when hr_api.validate_enabled then
236: --
237: -- As the Validate_Enabled exception has been raised

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

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

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

250: -- A validation or unexpected error has occured
251: --
252: rollback to UPDATE_CHAT_USER;
253: p_object_version_number := l_object_version_number;
254: hr_utility.set_location(' Leaving:'||l_proc, 90);
255: raise;
256: end update_chat_user;
257:
258: -- ----------------------------------------------------------------------------

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

273: l_object_version_id number;
274: --
275: --
276: begin
277: hr_utility.set_location('Entering:'|| l_proc, 10);
278: --
279: -- Issue a savepoint
280: --
281: savepoint DELETE_CHAT_USER;

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

339: --
340: -- Set all output arguments
341: --
342: --
343: hr_utility.set_location(' Leaving:'||l_proc, 170);
344: exception
345: when hr_api.validate_enabled then
346: --
347: -- As the Validate_Enabled exception has been raised

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

352: -- Only set output warning arguments
353: -- (Any key or derived arguments must be set to null
354: -- when validation only mode is being used.)
355: --
356: hr_utility.set_location(' Leaving:'||l_proc, 180);
357: when others then
358: --
359: -- A validation or unexpected error has occured
360: --

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

358: --
359: -- A validation or unexpected error has occured
360: --
361: rollback to DELETE_CHAT_USER;
362: hr_utility.set_location(' Leaving:'||l_proc, 190);
363: raise;
364: end delete_chat_user;
365: --
366: end ota_chat_user_api;