DBA Data[Home] [Help]

APPS.HR_KI_OPTIONS_API dependencies on HR_UTILITY

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

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

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

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

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

132:
133: p_option_id := null;
134: p_object_version_number := null;
135:
136: hr_utility.set_location(' Leaving:'||l_proc, 80);
137: when others then
138: --
139: -- A validation or unexpected error has occured
140: --

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

146:
147: p_option_id := null;
148: p_object_version_number := null;
149:
150: hr_utility.set_location(' Leaving:'||l_proc, 90);
151: raise;
152: end create_option;
153: --
154: --

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

170: l_proc varchar2(72) := g_package||'update_option';
171: l_object_version_number number := p_object_version_number;
172:
173: begin
174: hr_utility.set_location('Entering:'|| l_proc, 10);
175: --
176: -- Issue a savepoint
177: --
178: savepoint update_option;

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

241:
242: -- p_object_version_number := p_object_version_number;
243:
244: --
245: hr_utility.set_location(' Leaving:'||l_proc, 70);
246: exception
247: when hr_api.validate_enabled then
248: --
249: -- As the Validate_Enabled exception has been raised

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

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

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

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

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

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

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

355: -- Set all IN OUT and OUT parameters with out values
356: --
357:
358: --
359: hr_utility.set_location(' Leaving:'||l_proc, 70);
360: exception
361: when hr_api.validate_enabled then
362: --
363: -- As the Validate_Enabled exception has been raised

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

369: -- (Any key or derived arguments must be set to null
370: -- when validation only mode is being used.)
371: --
372:
373: hr_utility.set_location(' Leaving:'||l_proc, 80);
374: when others then
375: --
376: -- A validation or unexpected error has occured
377: --

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

379: --
380: -- Reset IN OUT parameters and set all
381: -- OUT parameters, including warnings, to null
382: --
383: hr_utility.set_location(' Leaving:'||l_proc, 90);
384: raise;
385: end delete_option;
386: end HR_KI_OPTIONS_API;