DBA Data[Home] [Help]

APPS.BEN_CWB_MATRIX_API dependencies on HR_UTILITY

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

30: l_object_version_number ben_cwb_matrix.object_version_number%TYPE;
31: l_proc varchar2(72) := g_package||'create_cwb_matrix';
32: --
33: begin
34: hr_utility.set_location('Entering:'|| l_proc, 10);
35: --
36: -- Issue a savepoint
37: --
38: savepoint create_cwb_matrix;

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

111: --
112: p_cwb_matrix_id := l_cwb_matrix_id;
113: p_object_version_number := l_object_version_number;
114: --
115: hr_utility.set_location(' Leaving:'||l_proc, 70);
116: --
117: exception
118: when hr_api.validate_enabled then
119: --

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

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

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

137:
138: p_cwb_matrix_id := null;
139: p_object_version_number := null;
140:
141: hr_utility.set_location(' Leaving:'||l_proc, 90);
142: raise;
143: end create_cwb_matrix;
144: --
145: -- ----------------------------------------------------------------------------

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

166: l_object_version_number ben_cwb_matrix.object_version_number%TYPE;
167: l_proc varchar2(72) := g_package||'update_cwb_matrix';
168: --
169: begin
170: hr_utility.set_location('Entering:'|| l_proc, 10);
171: --
172: -- Issue a savepoint
173: --
174: savepoint update_cwb_matrix;

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

172: -- Issue a savepoint
173: --
174: savepoint update_cwb_matrix;
175: --
176: hr_utility.set_location(l_proc, 20);
177: --
178: -- Process Logic
179: --
180: l_object_version_number := p_object_version_number;

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

261: -- Set all output arguments
262: --
263: p_object_version_number := l_object_version_number;
264: --
265: hr_utility.set_location(' Leaving:'||l_proc, 70);
266: --
267: exception
268: when hr_api.validate_enabled then
269: --

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

276: -- Only set output warning arguments
277: -- (Any key or derived arguments must be set to null
278: -- when validation only mode is being used.)
279: --
280: hr_utility.set_location(' Leaving:'||l_proc, 80);
281: --
282: when others then
283: --
284: -- A validation or unexpected error has occured

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

283: --
284: -- A validation or unexpected error has occured
285: --
286: rollback to update_cwb_matrix;
287: hr_utility.set_location(' Leaving:'||l_proc, 90);
288: raise;
289: end update_cwb_matrix;
290: --
291: -- ----------------------------------------------------------------------------

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

304: l_object_version_number ben_cwb_matrix.object_version_number%TYPE;
305: l_proc varchar2(72) := g_package||'delete_cwb_matrix';
306: --
307: begin
308: hr_utility.set_location('Entering:'|| l_proc, 10);
309: --
310: -- Issue a savepoint
311: --
312: savepoint delete_cwb_matrix;

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

310: -- Issue a savepoint
311: --
312: savepoint delete_cwb_matrix;
313: --
314: hr_utility.set_location(l_proc, 20);
315: --
316: -- Process Logic
317: --
318: l_object_version_number := p_object_version_number;

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

369: if p_validate then
370: raise hr_api.validate_enabled;
371: end if;
372: --
373: hr_utility.set_location(' Leaving:'||l_proc, 70);
374: --
375: exception
376: when hr_api.validate_enabled then
377: --

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

384: -- (Any key or derived arguments must be set to null
385: -- when validation only mode is being used.)
386: --
387:
388: hr_utility.set_location(' Leaving:'||l_proc, 80);
389: --
390: when others then
391: --
392: -- A validation or unexpected error has occured

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

391: --
392: -- A validation or unexpected error has occured
393: --
394: rollback to delete_cwb_matrix;
395: hr_utility.set_location(' Leaving:'||l_proc, 90);
396: raise;
397: end delete_cwb_matrix;
398: --
399: -- ----------------------------------------------------------------------------

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

412: l_proc varchar2(72) := g_package||'lck';
413: --
414: begin
415: --
416: hr_utility.set_location('Entering:'|| l_proc, 10);
417: --
418: ben_bcm_shd.lck
419: (p_cwb_matrix_id => p_cwb_matrix_id
420: ,p_object_version_number => p_object_version_number

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

419: (p_cwb_matrix_id => p_cwb_matrix_id
420: ,p_object_version_number => p_object_version_number
421: );
422: --
423: hr_utility.set_location(' Leaving:'||l_proc, 70);
424: --
425: end lck;
426: --
427: end ben_cwb_matrix_api;