DBA Data[Home] [Help]

APPS.HR_CAGR_ENTITLEMENT_API dependencies on HR_UTILITY

Line 36: hr_utility.set_location('Entering :'||l_proc||'/'||p_effective_date, 10);

32: l_effective_date DATE;
33: --
34: BEGIN
35: --
36: hr_utility.set_location('Entering :'||l_proc||'/'||p_effective_date, 10);
37: --
38: -- Issue a SAVEPOINT IF operating IN validation only mode
39: --
40: SAVEPOINT create_cagr_entitlement;

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

38: -- Issue a SAVEPOINT IF operating IN validation only mode
39: --
40: SAVEPOINT create_cagr_entitlement;
41: --
42: hr_utility.set_location(l_proc, 20);
43: --
44: l_effective_date := TRUNC(p_effective_date);
45: --
46: -- Process Logic

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

116: -- End of API User Hook for the after hook of create_cagr_entitlement
117: --
118: END;
119: --
120: hr_utility.set_location(l_proc, 60);
121: --
122: -- When IN validation only mode raise the Validate_Enabled EXCEPTION
123: --
124: IF p_validate THEN

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

129: --
130: p_object_version_number := l_object_version_number;
131: p_cagr_entitlement_id := l_cagr_entitlement_id;
132: --
133: hr_utility.set_location(' Leaving:'||l_proc, 70);
134: --
135: EXCEPTION
136: --
137: WHEN hr_api.validate_enabled THEN

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

145: -- (Any key or derived arguments must be set to null
146: -- WHEN validation only mode IS being used.)
147: --
148: p_object_version_number := null;
149: hr_utility.set_location(' Leaving:'||l_proc, 80);
150: --
151: WHEN others THEN
152: --
153: -- A validation or unexpected error has occured

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

188: l_effective_date DATE;
189: --
190: BEGIN
191: --
192: hr_utility.set_location('Entering:'|| l_proc, 10);
193: --
194: -- Issue a SAVEPOINT IF operating IN validation only mode
195: --
196: SAVEPOINT update_cagr_entitlement;

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

198: -- Truncate any DATE parameters
199: --
200: l_effective_date := TRUNC(p_effective_date);
201: --
202: hr_utility.set_location(l_proc, 20);
203: --
204: -- Process Logic
205: --
206: l_object_version_number := p_object_version_number;

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

275: -- End of API User Hook for the after hook of update_cagr_entitlement
276: --
277: END;
278: --
279: hr_utility.set_location(l_proc, 60);
280: --
281: -- When IN validation only mode raise the Validate_Enabled EXCEPTION
282: --
283: IF p_validate THEN

Line 285: hr_utility.set_location(l_proc, 65);

281: -- When IN validation only mode raise the Validate_Enabled EXCEPTION
282: --
283: IF p_validate THEN
284: --
285: hr_utility.set_location(l_proc, 65);
286: --
287: raise hr_api.validate_enabled;
288: END IF;
289: --

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

290: -- Set all output arguments
291: --
292: p_object_version_number := l_object_version_number;
293: --
294: hr_utility.set_location(' Leaving:'||l_proc, 70);
295: --
296: EXCEPTION
297: --
298: WHEN hr_api.validate_enabled THEN

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

305: -- Only set output warning arguments
306: -- (Any key or derived arguments must be set to null
307: -- WHEN validation only mode IS being used.)
308: --
309: hr_utility.set_location(' Leaving:'||l_proc, 80);
310: --
311: WHEN others THEN
312: --
313: -- A validation or unexpected error has occured

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

348: l_pcl_start_date DATE;
349: --
350: BEGIN
351: --
352: hr_utility.set_location('Entering:'|| l_proc, 10);
353: --
354: -- Issue a SAVEPOINT IF operating IN validation only mode
355: --
356: SAVEPOINT delete_cagr_entitlement;

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

354: -- Issue a SAVEPOINT IF operating IN validation only mode
355: --
356: SAVEPOINT delete_cagr_entitlement;
357: --
358: hr_utility.set_location(l_proc, 20);
359: --
360: l_effective_date := TRUNC(p_effective_date);
361: --
362: -- Process Logic

Line 388: hr_utility.set_location(l_proc, 30);

384: -- End of API User Hook for the before hook of delete_cagr_entitlement
385: --
386: END;
387: --
388: hr_utility.set_location(l_proc, 30);
389: --
390: -- Delete the Entitlement Lines that belong to the Entitlement
391: --
392: FOR c1 IN csr_entitlement_lines LOOP

Line 394: hr_utility.set_location(l_proc||'/'||

390: -- Delete the Entitlement Lines that belong to the Entitlement
391: --
392: FOR c1 IN csr_entitlement_lines LOOP
393: --
394: hr_utility.set_location(l_proc||'/'||
395: c1.cagr_entitlement_line_id||'/'||
396: c1.object_version_number, 40);
397: --
398: l_pcl_ovn := c1.object_version_number;

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

433: -- End of API User Hook for the after hook of delete_cagr_entitlement
434: --
435: END;
436: --
437: hr_utility.set_location(l_proc, 60);
438: --
439: -- When IN validation only mode raise the Validate_Enabled EXCEPTION
440: --
441: IF p_validate THEN

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

441: IF p_validate THEN
442: raise hr_api.validate_enabled;
443: END IF;
444: --
445: hr_utility.set_location(' Leaving:'||l_proc, 70);
446: --
447: EXCEPTION
448: --
449: WHEN hr_api.validate_enabled THEN