DBA Data[Home] [Help]

APPS.FF_FUNCTIONS_API dependencies on HR_UTILITY

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

30: l_object_version_number ff_functions.object_version_number%type;
31: l_effective_date date;
32: l_proc varchar2(72) := g_package||'CREATE_FUNCTION';
33: begin
34: hr_utility.set_location('Entering:'|| l_proc, 10);
35: --
36: -- Issue a savepoint
37: --
38: savepoint CREATE_FUNCTION;

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

124: --
125: p_function_id := l_function_id;
126: p_object_version_number := l_object_version_number;
127: --
128: hr_utility.set_location(' Leaving:'||l_proc, 70);
129: exception
130: when hr_api.validate_enabled then
131: --
132: -- As the Validate_Enabled exception has been raised

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

140: --
141: p_function_id := null;
142: p_object_version_number := null;
143:
144: hr_utility.set_location(' Leaving:'||l_proc, 80);
145: when others then
146: --
147: -- A validation or unexpected error has occured
148: --

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

153: --
154: p_function_id := null;
155: p_object_version_number := null;
156:
157: hr_utility.set_location(' Leaving:'||l_proc, 90);
158: raise;
159: end CREATE_FUNCTION;
160: --
161:

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

181: l_object_version_number ff_functions.object_version_number%type;
182: l_effective_date date;
183: l_proc varchar2(72) := g_package||'UPDATE_FUNCTION';
184: begin
185: hr_utility.set_location('Entering:'|| l_proc, 10);
186: --
187: -- Issue a savepoint
188: --
189: savepoint UPDATE_FUNCTION;

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

275: -- Set all IN OUT and OUT parameters with out values
276: --
277: p_object_version_number := l_object_version_number;
278: --
279: hr_utility.set_location(' Leaving:'||l_proc, 70);
280: exception
281: when hr_api.validate_enabled then
282: --
283: -- As the Validate_Enabled exception has been raised

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

290: -- when validation only mode is being used.)
291: --
292: p_object_version_number := null;
293:
294: hr_utility.set_location(' Leaving:'||l_proc, 80);
295: when others then
296: --
297: -- A validation or unexpected error has occured
298: --

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

302: -- OUT parameters, including warnings, to null
303: --
304: p_object_version_number := null;
305:
306: hr_utility.set_location(' Leaving:'||l_proc, 90);
307: raise;
308: end UPDATE_FUNCTION;
309: --
310: -- ----------------------------------------------------------------------------

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

340: l_parameter_sequence_number ff_function_parameters.sequence_number%type;
341: l_parameter_ovn ff_function_parameters.object_version_number%type;
342: l_proc varchar2(72) := g_package||'DELETE_FUNCTION';
343: begin
344: hr_utility.set_location('Entering:'|| l_proc, 10);
345: --
346: -- Issue a savepoint
347: --
348: savepoint DELETE_FUNCTION;

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

439: --
440: -- Set all IN OUT and OUT parameters with out values
441: --
442: --
443: hr_utility.set_location(' Leaving:'||l_proc, 70);
444: exception
445: when hr_api.validate_enabled then
446: --
447: -- As the Validate_Enabled exception has been raised

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

452: -- Reset IN OUT parameters and set OUT parameters
453: -- (Any key or derived arguments must be set to null
454: -- when validation only mode is being used.)
455: --
456: hr_utility.set_location(' Leaving:'||l_proc, 80);
457: when others then
458: --
459: -- A validation or unexpected error has occured
460: --

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

462: --
463: -- Reset IN OUT parameters and set all
464: -- OUT parameters, including warnings, to null
465: --
466: hr_utility.set_location(' Leaving:'||l_proc, 90);
467: raise;
468: end DELETE_FUNCTION;
469: --
470: