DBA Data[Home] [Help]

APPS.BEN_BATCH_RATE_INFO_API dependencies on HR_UTILITY

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

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

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

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

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

161: -- End of API User Hook for the after hook of create_batch_rate_info
162: --
163: end;
164: --
165: hr_utility.set_location(l_proc, 60);
166: --
167: -- When in validation only mode raise the Validate_Enabled exception
168: --
169: if p_validate then

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

174: --
175: p_batch_rt_id := l_batch_rt_id;
176: p_object_version_number := l_object_version_number;
177: --
178: hr_utility.set_location(' Leaving:'||l_proc, 70);
179: --
180: exception
181: --
182: when hr_api.validate_enabled then

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

191: -- when validation only mode is being used.)
192: --
193: p_batch_rt_id := null;
194: p_object_version_number := null;
195: hr_utility.set_location(' Leaving:'||l_proc, 80);
196: --
197: when others then
198: --
199: -- A validation or unexpected error has occured

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

199: -- A validation or unexpected error has occured
200: --
201: p_batch_rt_id := null;
202: p_object_version_number := null;
203: hr_utility.set_location(' Leaving:'||l_proc, 80);
204: --
205: ROLLBACK TO create_batch_rate_info;
206: raise;
207: --

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

243: l_object_version_number ben_batch_rate_info.object_version_number%TYPE;
244: --
245: begin
246: --
247: hr_utility.set_location('Entering:'|| l_proc, 10);
248: --
249: -- Issue a savepoint if operating in validation only mode
250: --
251: savepoint update_batch_rate_info;

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

249: -- Issue a savepoint if operating in validation only mode
250: --
251: savepoint update_batch_rate_info;
252: --
253: hr_utility.set_location(l_proc, 20);
254: --
255: -- Process Logic
256: --
257: l_object_version_number := p_object_version_number;

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

365: -- End of API User Hook for the after hook of update_batch_rate_info
366: --
367: end;
368: --
369: hr_utility.set_location(l_proc, 60);
370: --
371: -- When in validation only mode raise the Validate_Enabled exception
372: --
373: if p_validate then

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

377: -- Set all output arguments
378: --
379: p_object_version_number := l_object_version_number;
380: --
381: hr_utility.set_location(' Leaving:'||l_proc, 70);
382: --
383: exception
384: --
385: when hr_api.validate_enabled then

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

392: -- Only set output warning arguments
393: -- (Any key or derived arguments must be set to null
394: -- when validation only mode is being used.)
395: --
396: hr_utility.set_location(' Leaving:'||l_proc, 80);
397: --
398: when others then
399: --
400: -- A validation or unexpected error has occured

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

399: --
400: -- A validation or unexpected error has occured
401: --
402: p_object_version_number := null;
403: hr_utility.set_location(' Leaving:'||l_proc, 80);
404: --
405: ROLLBACK TO update_batch_rate_info;
406: raise;
407: --

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

422: l_object_version_number ben_batch_rate_info.object_version_number%TYPE;
423: --
424: begin
425: --
426: hr_utility.set_location('Entering:'|| l_proc, 10);
427: --
428: -- Issue a savepoint if operating in validation only mode
429: --
430: savepoint delete_batch_rate_info;

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

428: -- Issue a savepoint if operating in validation only mode
429: --
430: savepoint delete_batch_rate_info;
431: --
432: hr_utility.set_location(l_proc, 20);
433: --
434: -- Process Logic
435: --
436: l_object_version_number := p_object_version_number;

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

482: -- End of API User Hook for the after hook of delete_batch_rate_info
483: --
484: end;
485: --
486: hr_utility.set_location(l_proc, 60);
487: --
488: -- When in validation only mode raise the Validate_Enabled exception
489: --
490: if p_validate then

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

490: if p_validate then
491: raise hr_api.validate_enabled;
492: end if;
493: --
494: hr_utility.set_location(' Leaving:'||l_proc, 70);
495: --
496: exception
497: --
498: when hr_api.validate_enabled then

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

511: --
512: -- A validation or unexpected error has occured
513: --
514: p_object_version_number := null;
515: hr_utility.set_location(' Leaving:'||l_proc, 80);
516: --
517: ROLLBACK TO delete_batch_rate_info;
518: raise;
519: --

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

533: l_proc varchar2(72) := g_package||'lck';
534: --
535: begin
536: --
537: hr_utility.set_location('Entering:'|| l_proc, 10);
538: --
539: ben_bri_shd.lck
540: (p_batch_rt_id => p_batch_rt_id
541: ,p_object_version_number => p_object_version_number);

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

539: ben_bri_shd.lck
540: (p_batch_rt_id => p_batch_rt_id
541: ,p_object_version_number => p_object_version_number);
542: --
543: hr_utility.set_location(' Leaving:'||l_proc, 70);
544: --
545: end lck;
546: --
547: end ben_batch_rate_info_api;