DBA Data[Home] [Help]

APPS.PQH_FR_VALIDATIONS_API dependencies on HR_UTILITY

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

40: l_validation_id PQH_FR_VALIDATIONS.VALIDATION_ID%TYPE;
41:
42:
43: begin
44: hr_utility.set_location('Entering:'|| l_proc, 10);
45: --
46: -- Issue a savepoint
47: --
48: savepoint Insert_Validation;

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

158: p_object_version_number := l_object_version_number;
159:
160:
161: --
162: hr_utility.set_location(' Leaving:'||l_proc, 70);
163: exception
164: when hr_api.validate_enabled then
165: --
166: -- As the Validate_Enabled exception has been raised

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

171: -- Only set output warning arguments
172: -- (Any key or derived arguments must be set to null
173: -- when validation only mode is being used.)
174: --
175: hr_utility.set_location(' Leaving:'||l_proc, 80);
176:
177: when others then
178: p_validation_id := null;
179: p_object_version_number := null;

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

180: --
181: -- A validation or unexpected error has occured
182: --
183: rollback to Insert_Validation;
184: hr_utility.set_location(' Leaving:'||l_proc, 90);
185: raise;
186: end Insert_Validation;
187:
188: --

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

217: l_object_Version_Number PQH_FR_VALIDATIONS.OBJECT_VERSION_NUMBER%TYPE := P_Object_version_Number;
218: L_Effective_Date Date;
219:
220: Begin
221: hr_utility.set_location('Entering:'|| l_proc, 10);
222: --
223: -- Issue a savepoint
224: --
225: savepoint Update_Validation;

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

335:
336: p_object_version_number := l_object_version_number;
337:
338: --
339: hr_utility.set_location(' Leaving:'||l_proc, 70);
340: exception
341: when hr_api.validate_enabled then
342: --
343: -- As the Validate_Enabled exception has been raised

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

348: -- Only set output warning arguments
349: -- (Any key or derived arguments must be set to null
350: -- when validation only mode is being used.)
351: --
352: hr_utility.set_location(' Leaving:'||l_proc, 80);
353:
354: when others then
355: p_object_version_number := l_object_version_number;
356: --

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

356: --
357: -- A validation or unexpected error has occured
358: --
359: rollback to Update_Validation;
360: hr_utility.set_location(' Leaving:'||l_proc, 90);
361: raise;
362: end Update_Validation;
363:
364: --

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

375: --
376: l_proc varchar2(72) := g_package||'delete_Validation';
377: --
378: begin
379: hr_utility.set_location('Entering:'|| l_proc, 10);
380: --
381: -- Issue a savepoint
382: --
383: savepoint delete_Validation;

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

429: -- end if;
430: --
431: -- Set all output arguments
432: --
433: hr_utility.set_location(' Leaving:'||l_proc, 70);
434: exception
435: when hr_api.validate_enabled then
436: --
437: -- As the Validate_Enabled exception has been raised

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

442: -- Only set output warning arguments
443: -- (Any key or derived arguments must be set to null
444: -- when validation only mode is being used.)
445: --
446: hr_utility.set_location(' Leaving:'||l_proc, 80);
447: when others then
448: --
449: -- A validation or unexpected error has occured
450: --

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

448: --
449: -- A validation or unexpected error has occured
450: --
451: rollback to delete_Validation;
452: hr_utility.set_location(' Leaving:'||l_proc, 90);
453: raise;
454: end delete_Validation;
455:
456: end PQH_FR_VALIDATIONS_API;