DBA Data[Home] [Help]

APPS.PQH_ATTRIBUTES_API dependencies on HR_UTILITY

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

34: l_object_version_number pqh_attributes.object_version_number%TYPE;
35: --
36: begin
37: --
38: hr_utility.set_location('Entering:'|| l_proc, 10);
39: --
40: -- Issue a savepoint if operating in validation only mode
41: --
42: savepoint create_ATTRIBUTE;

Line 44: hr_utility.set_location(l_proc, 20);

40: -- Issue a savepoint if operating in validation only mode
41: --
42: savepoint create_ATTRIBUTE;
43: --
44: hr_utility.set_location(l_proc, 20);
45: --
46: -- Process Logic
47: --
48: begin

Line 133: hr_utility.set_location(l_proc, 60);

129: -- End of API User Hook for the after hook of create_ATTRIBUTE
130: --
131: end;
132: --
133: hr_utility.set_location(l_proc, 60);
134: --
135: -- When in validation only mode raise the Validate_Enabled exception
136: --
137: if p_validate then

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

142: --
143: p_attribute_id := l_attribute_id;
144: p_object_version_number := l_object_version_number;
145: --
146: hr_utility.set_location(' Leaving:'||l_proc, 70);
147: --
148: exception
149: --
150: when hr_api.validate_enabled then

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

159: -- when validation only mode is being used.)
160: --
161: p_attribute_id := null;
162: p_object_version_number := null;
163: hr_utility.set_location(' Leaving:'||l_proc, 80);
164: --
165: when others then
166: p_attribute_id := null;
167: p_object_version_number := null;

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

200: l_object_version_number pqh_attributes.object_version_number%TYPE;
201: --
202: begin
203: --
204: hr_utility.set_location('Entering:'|| l_proc, 10);
205: --
206: -- Issue a savepoint if operating in validation only mode
207: --
208: savepoint update_ATTRIBUTE;

Line 210: hr_utility.set_location(l_proc, 20);

206: -- Issue a savepoint if operating in validation only mode
207: --
208: savepoint update_ATTRIBUTE;
209: --
210: hr_utility.set_location(l_proc, 20);
211: --
212: -- Process Logic
213: --
214: l_object_version_number := p_object_version_number;

Line 302: hr_utility.set_location(l_proc, 60);

298: -- End of API User Hook for the after hook of update_ATTRIBUTE
299: --
300: end;
301: --
302: hr_utility.set_location(l_proc, 60);
303: --
304: -- When in validation only mode raise the Validate_Enabled exception
305: --
306: if p_validate then

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

310: -- Set all output arguments
311: --
312: p_object_version_number := l_object_version_number;
313: --
314: hr_utility.set_location(' Leaving:'||l_proc, 70);
315: --
316: exception
317: --
318: when hr_api.validate_enabled then

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

325: -- Only set output warning arguments
326: -- (Any key or derived arguments must be set to null
327: -- when validation only mode is being used.)
328: --
329: hr_utility.set_location(' Leaving:'||l_proc, 80);
330: --
331: when others then
332: p_object_version_number := l_object_version_number;
333: --

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

354: l_object_version_number pqh_attributes.object_version_number%TYPE;
355: --
356: begin
357: --
358: hr_utility.set_location('Entering:'|| l_proc, 10);
359: --
360: -- Issue a savepoint if operating in validation only mode
361: --
362: savepoint delete_ATTRIBUTE;

Line 364: hr_utility.set_location(l_proc, 20);

360: -- Issue a savepoint if operating in validation only mode
361: --
362: savepoint delete_ATTRIBUTE;
363: --
364: hr_utility.set_location(l_proc, 20);
365: --
366: -- Process Logic
367: --
368: l_object_version_number := p_object_version_number;

Line 433: hr_utility.set_location(l_proc, 60);

429: -- End of API User Hook for the after hook of delete_ATTRIBUTE
430: --
431: end;
432: --
433: hr_utility.set_location(l_proc, 60);
434: --
435: -- When in validation only mode raise the Validate_Enabled exception
436: --
437: if p_validate then

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

437: if p_validate then
438: raise hr_api.validate_enabled;
439: end if;
440: --
441: hr_utility.set_location(' Leaving:'||l_proc, 70);
442: --
443: exception
444: --
445: when hr_api.validate_enabled then

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

479: l_proc varchar2(72) := g_package||'lck';
480: --
481: begin
482: --
483: hr_utility.set_location('Entering:'|| l_proc, 10);
484: --
485: pqh_att_shd.lck
486: (
487: p_attribute_id => p_attribute_id

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

487: p_attribute_id => p_attribute_id
488: ,p_object_version_number => p_object_version_number
489: );
490: --
491: hr_utility.set_location(' Leaving:'||l_proc, 70);
492: --
493: end lck;
494: --
495: end pqh_ATTRIBUTES_api;