DBA Data[Home] [Help]

APPS.OTA_BJS_BUS dependencies on HR_UTILITY

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

39: l_legislation_code varchar2(150);
40: --
41: begin
42: --
43: hr_utility.set_location('Entering:'|| l_proc, 10);
44: --
45: -- Ensure that all the mandatory parameter are not null
46: --
47: hr_api.mandatory_arg_error

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

79: --
80: hr_api.set_legislation_context(l_legislation_code);
81: end if;
82: --
83: hr_utility.set_location(' Leaving:'|| l_proc, 20);
84: --
85: end set_security_group_id;
86: --
87: -- ---------------------------------------------------------------------------

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

108: l_proc varchar2(72) := g_package||'return_legislation_code';
109: --
110: Begin
111: --
112: hr_utility.set_location('Entering:'|| l_proc, 10);
113: --
114: -- Ensure that all the mandatory parameter are not null
115: --
116: hr_api.mandatory_arg_error

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

126: -- call to this function. Just return the value in the global
127: -- variable.
128: --
129: l_legislation_code := ota_bjs_bus.g_legislation_code;
130: hr_utility.set_location(l_proc, 20);
131: else
132: --
133: -- The ID is different to the last call to this function
134: -- or this is the first call to this function.

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

143: close csr_leg_code;
144: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
145: fnd_message.raise_error;
146: end if;
147: hr_utility.set_location(l_proc,30);
148: --
149: -- Set the global variables so the values are
150: -- available for the next call to this function.
151: --

Line 156: hr_utility.set_location(' Leaving:'|| l_proc, 40);

152: close csr_leg_code;
153: ota_bjs_bus.g_booking_justification_id := p_booking_justification_id;
154: ota_bjs_bus.g_legislation_code := l_legislation_code;
155: end if;
156: hr_utility.set_location(' Leaving:'|| l_proc, 40);
157: return l_legislation_code;
158: end return_legislation_code;
159: --
160: -- ----------------------------------------------------------------------------

Line 231: hr_utility.set_location('Entering:'|| v_proc, 5);

227: v_proc varchar2(72) := g_package||'check_start_end_dates';
228: --
229: Begin
230: --
231: hr_utility.set_location('Entering:'|| v_proc, 5);
232: --
233: ota_general.check_start_end_dates( p_start_date, p_end_date);
234: --
235: hr_utility.set_location(' Leaving:'|| v_proc, 10);

Line 235: hr_utility.set_location(' Leaving:'|| v_proc, 10);

231: hr_utility.set_location('Entering:'|| v_proc, 5);
232: --
233: ota_general.check_start_end_dates( p_start_date, p_end_date);
234: --
235: hr_utility.set_location(' Leaving:'|| v_proc, 10);
236:
237: Exception
238: WHEN app_exception.application_exception THEN
239:

Line 244: hr_utility.set_location(' Leaving:'||v_proc, 22);

240: IF hr_multi_message.exception_add(
241: p_associated_column1 => 'OTA_BOOKING_JUSTIFICATIONS_VL.START_DATE_ACTIVE')
242: THEN
243:
244: hr_utility.set_location(' Leaving:'||v_proc, 22);
245: RAISE;
246:
247: END IF;
248: hr_utility.set_location(' Leaving:'||v_proc, 25);

Line 248: hr_utility.set_location(' Leaving:'||v_proc, 25);

244: hr_utility.set_location(' Leaving:'||v_proc, 22);
245: RAISE;
246:
247: END IF;
248: hr_utility.set_location(' Leaving:'||v_proc, 25);
249: --
250: End check_start_end_dates;
251: --
252: --

Line 272: hr_utility.set_location('Entering:'|| v_proc, 5);

268: WHERE booking_justification_id = p_booking_justification_id;
269: --
270: Begin
271: --
272: hr_utility.set_location('Entering:'|| v_proc, 5);
273: --
274: OPEN csr_chk_enr_exist;
275: FETCH csr_chk_enr_exist INTO row_exists;
276: IF csr_chk_enr_exist%NOTFOUND THEN

Line 284: hr_utility.set_location(' Leaving:'|| v_proc, 10);

280: fnd_message.set_name('OTA','OTA_443160_ENR_JSTF_EXISTS');
281: fnd_message.raise_error;
282: END IF;
283: --
284: hr_utility.set_location(' Leaving:'|| v_proc, 10);
285:
286: Exception
287: WHEN app_exception.application_exception THEN
288:

Line 293: hr_utility.set_location(' Leaving:'||v_proc, 22);

289: IF hr_multi_message.exception_add(
290: p_associated_column1 => 'OTA_BOOKING_JUSTIFICATIONS_VL.BOOKING_JUSTIFICATION_ID')
291: THEN
292:
293: hr_utility.set_location(' Leaving:'||v_proc, 22);
294: RAISE;
295:
296: END IF;
297: hr_utility.set_location(' Leaving:'||v_proc, 25);

Line 297: hr_utility.set_location(' Leaving:'||v_proc, 25);

293: hr_utility.set_location(' Leaving:'||v_proc, 22);
294: RAISE;
295:
296: END IF;
297: hr_utility.set_location(' Leaving:'||v_proc, 25);
298: --
299: End check_enrollments_exist;
300: --
301: --

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

309: --
310: l_proc varchar2(72) := g_package||'insert_validate';
311: --
312: Begin
313: hr_utility.set_location('Entering:'||l_proc, 5);
314: --
315: -- Call all supporting business operations
316: --
317: hr_api.validate_bus_grp_id

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

329: --
330: check_start_end_dates(p_rec.start_date_active
331: ,p_rec.end_date_active);
332: --
333: hr_utility.set_location(' Leaving:'||l_proc, 10);
334: End insert_validate;
335: --
336: -- ----------------------------------------------------------------------------
337: -- |---------------------------< update_validate >----------------------------|

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

343: --
344: l_proc varchar2(72) := g_package||'update_validate';
345: --
346: Begin
347: hr_utility.set_location('Entering:'||l_proc, 5);
348: --
349: -- Call all supporting business operations
350: --
351: hr_api.validate_bus_grp_id

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

369:
370: check_start_end_dates(p_rec.start_date_active
371: ,p_rec.end_date_active);
372: --
373: hr_utility.set_location(' Leaving:'||l_proc, 10);
374: End update_validate;
375: --
376: -- ----------------------------------------------------------------------------
377: -- |---------------------------< delete_validate >----------------------------|

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

382: --
383: l_proc varchar2(72) := g_package||'delete_validate';
384: --
385: Begin
386: hr_utility.set_location('Entering:'||l_proc, 5);
387: --
388: -- Call all supporting business operations
389: --
390: check_enrollments_exist(p_booking_justification_id => p_rec.booking_justification_id);

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

387: --
388: -- Call all supporting business operations
389: --
390: check_enrollments_exist(p_booking_justification_id => p_rec.booking_justification_id);
391: hr_utility.set_location(' Leaving:'||l_proc, 10);
392: End delete_validate;
393: --
394: end ota_bjs_bus;