DBA Data[Home] [Help]

APPS.HR_PAE_BUS dependencies on HR_UTILITY

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

33:
34: c1_rec c1%ROWTYPE;
35:
36: BEGIN
37: hr_utility.set_location('Entering:'||l_proc, 5);
38:
39: l_api_updating := hr_pae_shd.api_updating
40: (p_exception_id => p_exception_id,
41: p_object_version_number => p_object_version_number);

Line 47: hr_utility.set_location(l_proc,10);

43: if ((l_api_updating and hr_pae_shd.g_old_rec.exception_name <>
44: p_exception_name)
45: or (NOT l_api_updating)) then
46:
47: hr_utility.set_location(l_proc,10);
48:
49: open c1;
50: fetch c1 into c1_rec;
51: if c1%FOUND then

Line 58: hr_utility.set_location(' Leaving:'||l_proc, 20);

54: fnd_message.set_name('HR','EXCEP_NAME_NOT_UNIQUE');
55: fnd_message.raise_error;
56: end if;
57: end if;
58: hr_utility.set_location(' Leaving:'||l_proc, 20);
59: END check_exception_name;
60: --
61: -- -------------------------------------------------------------------------
62: -- |---------------------------< Check_Exception_Category >----------------|

Line 82: hr_utility.set_location('Entering:'||l_proc, 5);

78: and h.lookup_code = p_exception_category;
79:
80: c1_rec c1%ROWTYPE;
81: BEGIN
82: hr_utility.set_location('Entering:'||l_proc, 5);
83: --
84: if p_exception_category is not null then
85: open c1;
86: fetch c1 into c1_rec;

Line 94: hr_utility.set_location(' Leaving:'||l_proc, 10);

90: fnd_message.raise_error;
91: end if;
92: close c1;
93: end if;
94: hr_utility.set_location(' Leaving:'||l_proc, 10);
95: END check_exception_category;
96:
97: --
98: -- --------------------------------------------------------------------------

Line 114: hr_utility.set_location('Entering:'||l_proc, 5);

110: l_proc varchar2(72) := g_package||'Derive_Excep_End_Time';
111: conversion_factor number := 1;
112:
113: BEGIN
114: hr_utility.set_location('Entering:'||l_proc, 5);
115:
116: if p_units = 'H' then
117: conversion_factor := 24;
118: elsif

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

121: end if;
122:
123: return (p_quantity / conversion_factor);
124:
125: hr_utility.set_location('Entering:'||l_proc, 10);
126: END to_days;
127: --
128: -- --------------------------------------------------------------------------
129: -- |---------------------------< Derive_Excep_End_Time >--------------------|

Line 174: hr_utility.set_location('Entering:'||l_proc, 5);

170: order by 3,4;
171:
172:
173: BEGIN
174: hr_utility.set_location('Entering:'||l_proc, 5);
175:
176: for c1_rec in c1 loop
177: l_time := l_time + to_days(p_quantity => c1_rec.tum,
178: p_units => c1_rec.btu);

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

178: p_units => c1_rec.btu);
179: end loop;
180: p_exception_end_time := p_exception_start_time + nvl(l_time,0);
181:
182: hr_utility.set_location('Entering:'||l_proc, 10);
183: END Derive_Excep_End_Time;
184: -- ----------------------------------------------------------------------------
185: -- |---------------------------< insert_validate >----------------------------|
186: -- ----------------------------------------------------------------------------

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

188: --
189: l_proc varchar2(72) := g_package||'insert_validate';
190: --
191: Begin
192: hr_utility.set_location('Entering:'||l_proc, 5);
193: --
194: -- Call all supporting business operations
195: --
196: hr_api.mandatory_arg_error (p_api_name => l_proc,

Line 217: hr_utility.set_location(' Leaving:'||l_proc, 10);

213: p_rec.exception_name);
214: --
215: hr_pae_bus.Check_Exception_Category (p_rec.exception_category);
216: --
217: hr_utility.set_location(' Leaving:'||l_proc, 10);
218: End insert_validate;
219: --
220: -- ----------------------------------------------------------------------------
221: -- |---------------------------< update_validate >----------------------------|

Line 228: hr_utility.set_location('Entering:'||l_proc, 5);

224: --
225: l_proc varchar2(72) := g_package||'update_validate';
226: --
227: Begin
228: hr_utility.set_location('Entering:'||l_proc, 5);
229: --
230: -- Call all supporting business operations
231: --
232: /* if (hr_pae_shd.api_updating

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

261: --
262: hr_pae_bus.Check_Exception_Category (p_rec.exception_category);
263: --
264: --
265: hr_utility.set_location(' Leaving:'||l_proc, 10);
266: End update_validate;
267: --
268: -- ----------------------------------------------------------------------------
269: -- |---------------------------< delete_validate >----------------------------|

Line 276: hr_utility.set_location('Entering:'||l_proc, 5);

272: --
273: l_proc varchar2(72) := g_package||'delete_validate';
274: --
275: Begin
276: hr_utility.set_location('Entering:'||l_proc, 5);
277: --
278: -- Call all supporting business operations
279: --
280: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

276: hr_utility.set_location('Entering:'||l_proc, 5);
277: --
278: -- Call all supporting business operations
279: --
280: hr_utility.set_location(' Leaving:'||l_proc, 10);
281: End delete_validate;
282: --
283: end hr_pae_bus;