DBA Data[Home] [Help]

APPS.BEN_BATCH_PARAMETER_API dependencies on HR_UTILITY

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

27: l_object_version_number ben_batch_parameter.object_version_number%TYPE;
28: --
29: begin
30: --
31: hr_utility.set_location('Entering:'|| l_proc, 10);
32: --
33: -- Issue a savepoint if operating in validation only mode
34: --
35: savepoint create_batch_parameter;

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

33: -- Issue a savepoint if operating in validation only mode
34: --
35: savepoint create_batch_parameter;
36: --
37: hr_utility.set_location(l_proc, 20);
38: --
39: -- Process Logic
40: --
41: begin

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

96: -- End of API User Hook for the after hook of create_batch_parameter
97: --
98: end;
99: --
100: hr_utility.set_location(l_proc, 60);
101: --
102: -- When in validation only mode raise the Validate_Enabled exception
103: --
104: if p_validate then

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

109: --
110: p_batch_parameter_id := l_batch_parameter_id;
111: p_object_version_number := l_object_version_number;
112: --
113: hr_utility.set_location(' Leaving:'||l_proc, 70);
114: --
115: exception
116: --
117: when hr_api.validate_enabled then

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

126: -- when validation only mode is being used.)
127: --
128: p_batch_parameter_id := null;
129: p_object_version_number := null;
130: hr_utility.set_location(' Leaving:'||l_proc, 80);
131: --
132: when others then
133: --
134: -- A validation or unexpected error has occured

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

158: l_object_version_number ben_batch_parameter.object_version_number%TYPE;
159: --
160: begin
161: --
162: hr_utility.set_location('Entering:'|| l_proc, 10);
163: --
164: -- Issue a savepoint if operating in validation only mode
165: --
166: savepoint update_batch_parameter;

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

164: -- Issue a savepoint if operating in validation only mode
165: --
166: savepoint update_batch_parameter;
167: --
168: hr_utility.set_location(l_proc, 20);
169: --
170: -- Process Logic
171: --
172: l_object_version_number := p_object_version_number;

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

230: -- End of API User Hook for the after hook of update_batch_parameter
231: --
232: end;
233: --
234: hr_utility.set_location(l_proc, 60);
235: --
236: -- When in validation only mode raise the Validate_Enabled exception
237: --
238: if p_validate then

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

242: -- Set all output arguments
243: --
244: p_object_version_number := l_object_version_number;
245: --
246: hr_utility.set_location(' Leaving:'||l_proc, 70);
247: --
248: exception
249: --
250: when hr_api.validate_enabled then

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

257: -- Only set output warning arguments
258: -- (Any key or derived arguments must be set to null
259: -- when validation only mode is being used.)
260: --
261: hr_utility.set_location(' Leaving:'||l_proc, 80);
262: --
263: when others then
264: --
265: -- A validation or unexpected error has occured

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

284: l_object_version_number ben_batch_parameter.object_version_number%TYPE;
285: --
286: begin
287: --
288: hr_utility.set_location('Entering:'|| l_proc, 10);
289: --
290: -- Issue a savepoint if operating in validation only mode
291: --
292: savepoint delete_batch_parameter;

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

290: -- Issue a savepoint if operating in validation only mode
291: --
292: savepoint delete_batch_parameter;
293: --
294: hr_utility.set_location(l_proc, 20);
295: --
296: -- Process Logic
297: --
298: l_object_version_number := p_object_version_number;

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

344: -- End of API User Hook for the after hook of delete_batch_parameter
345: --
346: end;
347: --
348: hr_utility.set_location(l_proc, 60);
349: --
350: -- When in validation only mode raise the Validate_Enabled exception
351: --
352: if p_validate then

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

352: if p_validate then
353: raise hr_api.validate_enabled;
354: end if;
355: --
356: hr_utility.set_location(' Leaving:'||l_proc, 70);
357: --
358: exception
359: --
360: when hr_api.validate_enabled then

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

392: l_proc varchar2(72) := g_package||'lck';
393: --
394: begin
395: --
396: hr_utility.set_location('Entering:'|| l_proc, 10);
397: --
398: ben_bbp_shd.lck
399: (p_batch_parameter_id => p_batch_parameter_id
400: ,p_object_version_number => p_object_version_number);

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

398: ben_bbp_shd.lck
399: (p_batch_parameter_id => p_batch_parameter_id
400: ,p_object_version_number => p_object_version_number);
401: --
402: hr_utility.set_location(' Leaving:'||l_proc, 70);
403: --
404: end lck;
405: --
406: end ben_batch_parameter_api;