DBA Data[Home] [Help]

APPS.BEN_BATCH_PROC_INFO_API dependencies on HR_UTILITY

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

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

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

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

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

121: -- End of API User Hook for the after hook of create_batch_proc_info
122: --
123: end;
124: --
125: hr_utility.set_location(l_proc, 60);
126: --
127: -- When in validation only mode raise the Validate_Enabled exception
128: --
129: if p_validate then

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

134: --
135: p_batch_proc_id := l_batch_proc_id;
136: p_object_version_number := l_object_version_number;
137: --
138: hr_utility.set_location(' Leaving:'||l_proc, 70);
139: --
140: exception
141: --
142: when hr_api.validate_enabled then

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

151: -- when validation only mode is being used.)
152: --
153: p_batch_proc_id := null;
154: p_object_version_number := null;
155: hr_utility.set_location(' Leaving:'||l_proc, 80);
156: --
157: when others then
158: --
159: -- A validation or unexpected error has occured

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

160: --
161: ROLLBACK TO create_batch_proc_info;
162: p_batch_proc_id := null;
163: p_object_version_number := null;
164: hr_utility.set_location(' Leaving:'||l_proc, 90);
165: raise;
166: --
167: end create_batch_proc_info;
168: -- ----------------------------------------------------------------------------

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

192: l_object_version_number ben_batch_proc_info.object_version_number%TYPE;
193: --
194: begin
195: --
196: hr_utility.set_location('Entering:'|| l_proc, 10);
197: --
198: -- Issue a savepoint if operating in validation only mode
199: --
200: savepoint update_batch_proc_info;

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

198: -- Issue a savepoint if operating in validation only mode
199: --
200: savepoint update_batch_proc_info;
201: --
202: hr_utility.set_location(l_proc, 20);
203: --
204: -- Process Logic
205: --
206: l_object_version_number := p_object_version_number;

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

283: -- End of API User Hook for the after hook of update_batch_proc_info
284: --
285: end;
286: --
287: hr_utility.set_location(l_proc, 60);
288: --
289: -- When in validation only mode raise the Validate_Enabled exception
290: --
291: if p_validate then

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

295: -- Set all output arguments
296: --
297: p_object_version_number := l_object_version_number;
298: --
299: hr_utility.set_location(' Leaving:'||l_proc, 70);
300: --
301: exception
302: --
303: when hr_api.validate_enabled then

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

310: -- Only set output warning arguments
311: -- (Any key or derived arguments must be set to null
312: -- when validation only mode is being used.)
313: --
314: hr_utility.set_location(' Leaving:'||l_proc, 80);
315: --
316: when others then
317: --
318: -- A validation or unexpected error has occured

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

336: l_object_version_number ben_batch_proc_info.object_version_number%TYPE;
337: --
338: begin
339: --
340: hr_utility.set_location('Entering:'|| l_proc, 10);
341: --
342: -- Issue a savepoint if operating in validation only mode
343: --
344: savepoint delete_batch_proc_info;

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

342: -- Issue a savepoint if operating in validation only mode
343: --
344: savepoint delete_batch_proc_info;
345: --
346: hr_utility.set_location(l_proc, 20);
347: --
348: -- Process Logic
349: --
350: l_object_version_number := p_object_version_number;

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

393: -- End of API User Hook for the after hook of delete_batch_proc_info
394: --
395: end;
396: --
397: hr_utility.set_location(l_proc, 60);
398: --
399: -- When in validation only mode raise the Validate_Enabled exception
400: --
401: if p_validate then

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

401: if p_validate then
402: raise hr_api.validate_enabled;
403: end if;
404: --
405: hr_utility.set_location(' Leaving:'||l_proc, 70);
406: --
407: exception
408: --
409: when hr_api.validate_enabled then

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

441: l_proc varchar2(72) := g_package||'lck';
442: --
443: begin
444: --
445: hr_utility.set_location('Entering:'|| l_proc, 10);
446: --
447: ben_bpi_shd.lck
448: (p_batch_proc_id => p_batch_proc_id
449: ,p_object_version_number => p_object_version_number);

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

447: ben_bpi_shd.lck
448: (p_batch_proc_id => p_batch_proc_id
449: ,p_object_version_number => p_object_version_number);
450: --
451: hr_utility.set_location(' Leaving:'||l_proc, 70);
452: --
453: end lck;
454: --
455: end ben_batch_proc_info_api;