DBA Data[Home] [Help]

APPS.BEN_EXT_RSLT_API dependencies on HR_UTILITY

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

42: l_object_version_number ben_ext_rslt.object_version_number%TYPE;
43: --
44: begin
45: --
46: hr_utility.set_location('Entering:'|| l_proc, 10);
47: --
48: -- Issue a savepoint if operating in validation only mode
49: --
50: savepoint create_EXT_RSLT;

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

48: -- Issue a savepoint if operating in validation only mode
49: --
50: savepoint create_EXT_RSLT;
51: --
52: hr_utility.set_location(l_proc, 20);
53: --
54: -- Process Logic
55: --
56: begin

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

157: -- End of API User Hook for the after hook of create_EXT_RSLT
158: --
159: end;
160: --
161: hr_utility.set_location(l_proc, 60);
162: --
163: -- When in validation only mode raise the Validate_Enabled exception
164: --
165: if p_validate then

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

170: --
171: p_ext_rslt_id := l_ext_rslt_id;
172: p_object_version_number := l_object_version_number;
173: --
174: hr_utility.set_location(' Leaving:'||l_proc, 70);
175: --
176: exception
177: --
178: when hr_api.validate_enabled then

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

187: -- when validation only mode is being used.)
188: --
189: p_ext_rslt_id := null;
190: p_object_version_number := null;
191: hr_utility.set_location(' Leaving:'||l_proc, 80);
192: --
193: when others then
194: --
195: -- A validation or unexpected error has occured

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

236: l_object_version_number ben_ext_rslt.object_version_number%TYPE;
237: --
238: begin
239: --
240: hr_utility.set_location('Entering:'|| l_proc, 10);
241: --
242: -- Issue a savepoint if operating in validation only mode
243: --
244: savepoint update_EXT_RSLT;

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

242: -- Issue a savepoint if operating in validation only mode
243: --
244: savepoint update_EXT_RSLT;
245: --
246: hr_utility.set_location(l_proc, 20);
247: --
248: -- Process Logic
249: --
250: l_object_version_number := p_object_version_number;

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

354: -- End of API User Hook for the after hook of update_EXT_RSLT
355: --
356: end;
357: --
358: hr_utility.set_location(l_proc, 60);
359: --
360: -- When in validation only mode raise the Validate_Enabled exception
361: --
362: if p_validate then

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

366: -- Set all output arguments
367: --
368: p_object_version_number := l_object_version_number;
369: --
370: hr_utility.set_location(' Leaving:'||l_proc, 70);
371: --
372: exception
373: --
374: when hr_api.validate_enabled then

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

381: -- Only set output warning arguments
382: -- (Any key or derived arguments must be set to null
383: -- when validation only mode is being used.)
384: --
385: hr_utility.set_location(' Leaving:'||l_proc, 80);
386: --
387: when others then
388: --
389: -- A validation or unexpected error has occured

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

409: l_object_version_number ben_ext_rslt.object_version_number%TYPE;
410: --
411: begin
412: --
413: hr_utility.set_location('Entering:'|| l_proc, 10);
414: --
415: -- Issue a savepoint if operating in validation only mode
416: --
417: savepoint delete_EXT_RSLT;

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

415: -- Issue a savepoint if operating in validation only mode
416: --
417: savepoint delete_EXT_RSLT;
418: --
419: hr_utility.set_location(l_proc, 20);
420: --
421: -- Process Logic
422: --
423: l_object_version_number := p_object_version_number;

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

471: -- End of API User Hook for the after hook of delete_EXT_RSLT
472: --
473: end;
474: --
475: hr_utility.set_location(l_proc, 60);
476: --
477: -- When in validation only mode raise the Validate_Enabled exception
478: --
479: if p_validate then

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

479: if p_validate then
480: raise hr_api.validate_enabled;
481: end if;
482: --
483: hr_utility.set_location(' Leaving:'||l_proc, 70);
484: --
485: exception
486: --
487: when hr_api.validate_enabled then

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

521: l_proc varchar2(72) := g_package||'lck';
522: --
523: begin
524: --
525: hr_utility.set_location('Entering:'|| l_proc, 10);
526: --
527: ben_xrs_shd.lck
528: (
529: p_ext_rslt_id => p_ext_rslt_id

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

529: p_ext_rslt_id => p_ext_rslt_id
530: ,p_object_version_number => p_object_version_number
531: );
532: --
533: hr_utility.set_location(' Leaving:'||l_proc, 70);
534: --
535: end lck;
536: --
537: end ben_EXT_RSLT_api;