DBA Data[Home] [Help]

APPS.FF_FUNCTION_PARAMETERS_API dependencies on HR_UTILITY

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

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

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

127: p_sequence_number := l_sequence_number;
128: p_object_version_number := l_object_version_number;
129:
130: --
131: hr_utility.set_location(' Leaving:'||l_proc, 70);
132: exception
133: when hr_api.validate_enabled then
134: --
135: -- As the Validate_Enabled exception has been raised

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

144:
145: p_sequence_number := null;
146: p_object_version_number := null;
147:
148: hr_utility.set_location(' Leaving:'||l_proc, 80);
149: when others then
150: --
151: -- A validation or unexpected error has occured
152: --

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

157: --
158: p_sequence_number := null;
159: p_object_version_number := null;
160:
161: hr_utility.set_location(' Leaving:'||l_proc, 90);
162: raise;
163: end CREATE_PARAMETER;
164: --
165: -- ----------------------------------------------------------------------------

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

186: l_object_version_number ff_function_parameters.object_version_number%type;
187: l_effective_date date;
188: l_proc varchar2(72) := g_package||'UPDATE_PARAMETER';
189: begin
190: hr_utility.set_location('Entering:'|| l_proc, 10);
191: --
192: -- Issue a savepoint
193: --
194: savepoint UPDATE_PARAMETER;

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

284: -- Set all IN OUT and OUT parameters with out values
285: --
286: p_object_version_number := l_object_version_number;
287: --
288: hr_utility.set_location(' Leaving:'||l_proc, 70);
289: exception
290: when hr_api.validate_enabled then
291: --
292: -- As the Validate_Enabled exception has been raised

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

298: -- (Any key or derived arguments must be set to null
299: -- when validation only mode is being used.)
300: --
301: p_object_version_number := l_object_version_number;
302: hr_utility.set_location(' Leaving:'||l_proc, 80);
303: when others then
304: --
305: -- A validation or unexpected error has occured
306: --

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

309: -- Reset IN OUT parameters and set all
310: -- OUT parameters, including warnings, to null
311: --
312: p_object_version_number := l_object_version_number;
313: hr_utility.set_location(' Leaving:'||l_proc, 90);
314: raise;
315: end UPDATE_PARAMETER;
316: --
317: -- ----------------------------------------------------------------------------

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

328: -- Declare cursors and local variables
329: --
330: l_proc varchar2(72) := g_package||'DELETE_PARAMETER';
331: begin
332: hr_utility.set_location('Entering:'|| l_proc, 10);
333: --
334: -- Issue a savepoint
335: --
336: savepoint DELETE_PARAMETER;

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

394: end if;
395: --
396: -- Set all IN OUT and OUT parameters with out values
397: --
398: hr_utility.set_location(' Leaving:'||l_proc, 70);
399: exception
400: when hr_api.validate_enabled then
401: --
402: -- As the Validate_Enabled exception has been raised

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

407: -- Reset IN OUT parameters and set OUT parameters
408: -- (Any key or derived arguments must be set to null
409: -- when validation only mode is being used.)
410: --
411: hr_utility.set_location(' Leaving:'||l_proc, 80);
412: when others then
413: --
414: -- A validation or unexpected error has occured
415: --

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

417: --
418: -- Reset IN OUT parameters and set all
419: -- OUT parameters, including warnings, to null
420: --
421: hr_utility.set_location(' Leaving:'||l_proc, 90);
422: raise;
423: end DELETE_PARAMETER;
424: --
425: