DBA Data[Home] [Help]

APPS.HR_KI_TOPICS_API dependencies on HR_UTILITY

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

26: l_language_code varchar2(30);
27: l_object_version_number number;
28:
29: begin
30: hr_utility.set_location('Entering:'|| l_proc, 10);
31: --
32: -- Issue a savepoint
33: --
34: savepoint create_topic;

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

107: p_topic_id := l_topic_id;
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 128: hr_utility.set_location(' Leaving:'||l_proc, 80);

124:
125: p_topic_id := null;
126: p_object_version_number := null;
127:
128: hr_utility.set_location(' Leaving:'||l_proc, 80);
129: when others then
130: --
131: -- A validation or unexpected error has occured
132: --

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

138:
139: p_topic_id := null;
140: p_object_version_number := null;
141:
142: hr_utility.set_location(' Leaving:'||l_proc, 90);
143: raise;
144: end create_topic;
145: --
146: --

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

163: l_language_code varchar2(30);
164: l_object_version_number number := p_object_version_number;
165:
166: begin
167: hr_utility.set_location('Entering:'|| l_proc, 10);
168: --
169: -- Issue a savepoint
170: --
171: savepoint update_topic;

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

242: --
243: -- Set all IN OUT and OUT parameters with out values
244: --
245: --
246: hr_utility.set_location(' Leaving:'||l_proc, 70);
247: exception
248: when hr_api.validate_enabled then
249: --
250: -- As the Validate_Enabled exception has been raised

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

258: --
259:
260: p_object_version_number := l_object_version_number;
261:
262: hr_utility.set_location(' Leaving:'||l_proc, 80);
263: when others then
264: --
265: -- A validation or unexpected error has occured
266: --

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

271: --
272:
273: p_object_version_number := l_object_version_number;
274:
275: hr_utility.set_location(' Leaving:'||l_proc, 90);
276: raise;
277: end update_topic;
278: --
279: --

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

292: --
293: l_proc varchar2(72) := g_package||'delete_topic';
294:
295: begin
296: hr_utility.set_location('Entering:'|| l_proc, 10);
297: --
298: -- Issue a savepoint
299: --
300: savepoint delete_topic;

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

363: -- Set all IN OUT and OUT parameters with out values
364: --
365:
366: --
367: hr_utility.set_location(' Leaving:'||l_proc, 70);
368: exception
369: when hr_api.validate_enabled then
370: --
371: -- As the Validate_Enabled exception has been raised

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

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

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

387: --
388: -- Reset IN OUT parameters and set all
389: -- OUT parameters, including warnings, to null
390: --
391: hr_utility.set_location(' Leaving:'||l_proc, 90);
392: raise;
393: end delete_topic;
394: end HR_KI_TOPICS_API;