DBA Data[Home] [Help]

APPS.BEN_EXT_RSLT_ERR_API dependencies on HR_UTILITY

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

33: l_object_version_number ben_ext_rslt_err.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_EXT_RSLT_ERR;

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

39: -- Issue a savepoint if operating in validation only mode
40: --
41: savepoint create_EXT_RSLT_ERR;
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_EXT_RSLT_ERR
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_ext_rslt_err_id := l_ext_rslt_err_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_ext_rslt_err_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 195: hr_utility.set_location('Entering:'|| l_proc, 10);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

399: -- End of API User Hook for the after hook of delete_EXT_RSLT_ERR
400: --
401: end;
402: --
403: hr_utility.set_location(l_proc, 60);
404: --
405: -- When in validation only mode raise the Validate_Enabled exception
406: --
407: if p_validate then

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

407: if p_validate then
408: raise hr_api.validate_enabled;
409: end if;
410: --
411: hr_utility.set_location(' Leaving:'||l_proc, 70);
412: --
413: exception
414: --
415: when hr_api.validate_enabled then

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

449: l_proc varchar2(72) := g_package||'lck';
450: --
451: begin
452: --
453: hr_utility.set_location('Entering:'|| l_proc, 10);
454: --
455: ben_xre_shd.lck
456: (
457: p_ext_rslt_err_id => p_ext_rslt_err_id

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

457: p_ext_rslt_err_id => p_ext_rslt_err_id
458: ,p_object_version_number => p_object_version_number
459: );
460: --
461: hr_utility.set_location(' Leaving:'||l_proc, 70);
462: --
463: end lck;
464: --
465: end ben_EXT_RSLT_ERR_api;