DBA Data[Home] [Help]

APPS.OTA_FORUM_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;

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

138: p_forum_id := l_forum_id;
139: p_object_version_number := l_object_version_number;
140:
141:
142: hr_utility.set_location(' Leaving:'||l_proc, 70);
143: exception
144: when hr_api.validate_enabled then
145: --
146: -- As the Validate_Enabled exception has been raised

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

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

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

161: --
162: rollback to CREATE_FORUM;
163: p_forum_id := null;
164: p_object_version_number := null;
165: hr_utility.set_location(' Leaving:'||l_proc, 90);
166: raise;
167: end create_forum;
168: -- ----------------------------------------------------------------------------
169: -- |----------------------------< update_forum >---------------------|

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

191: l_effective_date date;
192: l_object_version_number number := p_object_version_number;
193: l_end_date date;
194: begin
195: hr_utility.set_location('Entering:'|| l_proc, 10);
196: --
197: -- Issue a savepoint
198: --
199: savepoint UPDATE_FORUM;

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

291: end if;
292: --
293: -- Set all output arguments
294: --
295: hr_utility.set_location(' Leaving:'||l_proc, 70);
296: exception
297: when hr_api.validate_enabled then
298: --
299: -- As the Validate_Enabled exception has been raised

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

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

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

312: -- A validation or unexpected error has occured
313: --
314: rollback to UPDATE_FORUM;
315: p_object_version_number := l_object_version_number;
316: hr_utility.set_location(' Leaving:'||l_proc, 90);
317: raise;
318: end update_forum;
319: --
320: -- ----------------------------------------------------------------------------

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

333: l_object_version_id number;
334: --
335: --
336: begin
337: hr_utility.set_location('Entering:'|| l_proc, 10);
338: --
339: -- Issue a savepoint
340: --
341: savepoint DELETE_FORUM;

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

398: --
399: -- Set all output arguments
400: --
401: --
402: hr_utility.set_location(' Leaving:'||l_proc, 170);
403: exception
404: when hr_api.validate_enabled then
405: --
406: -- As the Validate_Enabled exception has been raised

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

411: -- Only set output warning arguments
412: -- (Any key or derived arguments must be set to null
413: -- when validation only mode is being used.)
414: --
415: hr_utility.set_location(' Leaving:'||l_proc, 180);
416: when others then
417: --
418: -- A validation or unexpected error has occured
419: --

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

417: --
418: -- A validation or unexpected error has occured
419: --
420: rollback to DELETE_FORUM;
421: hr_utility.set_location(' Leaving:'||l_proc, 190);
422: raise;
423: end delete_forum;
424: --
425: end ota_forum_api;