DBA Data[Home] [Help]

APPS.BEN_ELIG_OBJ_API dependencies on HR_UTILITY

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

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

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

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

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

105: -- End of API User Hook for the after hook of create_ELIG_OBJ
106: --
107: end;
108: --
109: hr_utility.set_location(l_proc, 60);
110: --
111: -- When in validation only mode raise the Validate_Enabled exception
112: --
113: if p_validate then

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

120: p_effective_start_date := l_effective_start_date;
121: p_effective_end_date := l_effective_end_date;
122: p_object_version_number := l_object_version_number;
123: --
124: hr_utility.set_location(' Leaving:'||l_proc, 70);
125: --
126: exception
127: --
128: when hr_api.validate_enabled then

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

139: p_elig_obj_id := null;
140: p_effective_start_date := null;
141: p_effective_end_date := null;
142: p_object_version_number := null;
143: hr_utility.set_location(' Leaving:'||l_proc, 80);
144: --
145: when others then
146: --
147: -- A validation or unexpected error has occured

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

176: l_effective_end_date ben_elig_obj_f.effective_end_date%TYPE;
177: --
178: begin
179: --
180: hr_utility.set_location('Entering:'|| l_proc, 10);
181: --
182: -- Issue a savepoint if operating in validation only mode
183: --
184: savepoint update_ELIG_OBJ;

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

182: -- Issue a savepoint if operating in validation only mode
183: --
184: savepoint update_ELIG_OBJ;
185: --
186: hr_utility.set_location(l_proc, 20);
187: --
188: -- Process Logic
189: --
190: l_object_version_number := p_object_version_number;

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

256: -- End of API User Hook for the after hook of update_ELIG_OBJ
257: --
258: end;
259: --
260: hr_utility.set_location(l_proc, 60);
261: --
262: -- When in validation only mode raise the Validate_Enabled exception
263: --
264: if p_validate then

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

270: p_object_version_number := l_object_version_number;
271: p_effective_start_date := l_effective_start_date;
272: p_effective_end_date := l_effective_end_date;
273: --
274: hr_utility.set_location(' Leaving:'||l_proc, 70);
275: --
276: exception
277: --
278: when hr_api.validate_enabled then

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

285: -- Only set output warning arguments
286: -- (Any key or derived arguments must be set to null
287: -- when validation only mode is being used.)
288: --
289: hr_utility.set_location(' Leaving:'||l_proc, 80);
290: --
291: when others then
292: --
293: -- A validation or unexpected error has occured

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

318: l_effective_end_date ben_elig_obj_f.effective_end_date%TYPE;
319: --
320: begin
321: --
322: hr_utility.set_location('Entering:'|| l_proc, 10);
323: --
324: -- Issue a savepoint if operating in validation only mode
325: --
326: savepoint delete_ELIG_OBJ;

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

324: -- Issue a savepoint if operating in validation only mode
325: --
326: savepoint delete_ELIG_OBJ;
327: --
328: hr_utility.set_location(l_proc, 20);
329: --
330: -- Process Logic
331: --
332: l_object_version_number := p_object_version_number;

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

387: -- End of API User Hook for the after hook of delete_ELIG_OBJ
388: --
389: end;
390: --
391: hr_utility.set_location(l_proc, 60);
392: --
393: -- When in validation only mode raise the Validate_Enabled exception
394: --
395: if p_validate then

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

395: if p_validate then
396: raise hr_api.validate_enabled;
397: end if;
398: --
399: hr_utility.set_location(' Leaving:'||l_proc, 70);
400: --
401: exception
402: --
403: when hr_api.validate_enabled then

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

445: l_validation_end_date date;
446: --
447: begin
448: --
449: hr_utility.set_location('Entering:'|| l_proc, 10);
450: --
451: ben_beo_shd.lck
452: (
453: p_elig_obj_id => p_elig_obj_id

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

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