DBA Data[Home] [Help]

APPS.HR_QUEST_FIELDS_API dependencies on HR_UTILITY

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

29: --
30: l_effective_date date;
31: l_proc varchar2(72) := g_package||'insert_quest_fields';
32: begin
33: hr_utility.set_location('Entering:'|| l_proc, 10);
34: --
35: -- Issue a savepoint
36: --
37: savepoint insert_quest_fields;

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

130: -- Set all IN OUT and OUT parameters with out values
131: --
132:
133: --
134: hr_utility.set_location(' Leaving:'||l_proc, 70);
135: exception
136: when hr_api.validate_enabled then
137: --
138: -- As the Validate_Enabled exception has been raised

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

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

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

159: --
160: p_field_id := null;
161: p_object_version_number := null;
162:
163: hr_utility.set_location(' Leaving:'||l_proc, 90);
164: raise;
165: end insert_quest_fields;
166: --
167:

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

191: l_effective_date date;
192: l_object_version_number number;
193: l_proc varchar2(72) := g_package||'update_quest_fields';
194: begin
195: hr_utility.set_location('Entering:'|| l_proc, 10);
196: --
197: -- Issue a savepoint
198: --
199: savepoint update_quest_fields;

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

293: -- Set all IN OUT and OUT parameters with out values
294: --
295:
296: --
297: hr_utility.set_location(' Leaving:'||l_proc, 70);
298: exception
299: when hr_api.validate_enabled then
300: --
301: -- As the Validate_Enabled exception has been raised

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

308: -- when validation only mode is being used.)
309: --
310: p_object_version_number := l_object_version_number;
311:
312: hr_utility.set_location(' Leaving:'||l_proc, 80);
313: when others then
314: --
315: -- A validation or unexpected error has occured
316: --

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

321: --
322:
323: p_object_version_number := l_object_version_number;
324:
325: hr_utility.set_location(' Leaving:'||l_proc, 90);
326: raise;
327: end update_quest_fields;
328: --
329:

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

347:
348: l_proc varchar2(72) := g_package||'delete_quest_fields';
349:
350: begin
351: hr_utility.set_location('Entering:'|| l_proc, 10);
352: --
353: -- Issue a savepoint
354: --
355: savepoint delete_quest_fields;

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

433: -- Set all IN OUT and OUT parameters with out values
434: --
435:
436: --
437: hr_utility.set_location(' Leaving:'||l_proc, 70);
438: exception
439: when hr_api.validate_enabled then
440: --
441: -- As the Validate_Enabled exception has been raised

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

447: -- (Any key or derived arguments must be set to null
448: -- when validation only mode is being used.)
449: --
450:
451: hr_utility.set_location(' Leaving:'||l_proc, 80);
452: when others then
453: --
454: -- A validation or unexpected error has occured
455: --

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

458: -- Reset IN OUT parameters and set all
459: -- OUT parameters, including warnings, to null
460: --
461:
462: hr_utility.set_location(' Leaving:'||l_proc, 90);
463: raise;
464:
465: end delete_quest_fields;
466: --