DBA Data[Home] [Help]

APPS.PAY_PGA_BUS dependencies on HR_UTILITY

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

274: --
275: l_proc varchar2(100) := g_package || 'chk_set_of_books_id';
276: begin
277:
278: hr_utility.set_location('Entering:'|| l_proc, 10);
279: --
280: if p_set_of_books_id is not null and p_set_of_books_id <> 0 then
281:
282: hr_utility.set_location('Entering:'|| l_proc, 20);

Line 282: hr_utility.set_location('Entering:'|| l_proc, 20);

278: hr_utility.set_location('Entering:'|| l_proc, 10);
279: --
280: if p_set_of_books_id is not null and p_set_of_books_id <> 0 then
281:
282: hr_utility.set_location('Entering:'|| l_proc, 20);
283:
284: open csr_set_of_books_id;
285: fetch csr_set_of_books_id into l_exists;
286:

Line 296: hr_utility.set_location(' Leaving:'|| l_proc, 30);

292: close csr_set_of_books_id;
293:
294: end if;
295: --
296: hr_utility.set_location(' Leaving:'|| l_proc, 30);
297: --
298: exception
299: when others then
300: if csr_set_of_books_id%isopen then

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

320: --
321: l_proc varchar2(100) := g_package || 'chk_external_account_id';
322: begin
323: --
324: hr_utility.set_location('Entering:'|| l_proc, 10);
325:
326: if p_external_account_id is not null then
327:
328: open csr_external_account_id;

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

337: close csr_external_account_id;
338:
339: end if;
340:
341: hr_utility.set_location(' Leaving:'|| l_proc, 20);
342: --
343: exception
344: when others then
345: if csr_external_account_id%isopen then

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

365: --
366: l_proc varchar2(100) := g_package || 'chk_gl_account_id';
367: begin
368: --
369: hr_utility.set_location('Entering:'|| l_proc, 10);
370:
371: if p_gl_account_id is not null then
372:
373: open csr_gl_account_id;

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

382: close csr_gl_account_id;
383:
384: end if;
385:
386: hr_utility.set_location(' Leaving:'|| l_proc, 20);
387: --
388: exception
389: when others then
390: if csr_gl_account_id%isopen then

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

407: --
408: l_proc varchar2(72) := g_package||'insert_validate';
409: --
410: Begin
411: hr_utility.set_location('Entering:'||l_proc, 5);
412: --
413: --
414: -- Validate Dependent Attributes
415: --

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

437: chk_gl_account_id
438: (p_gl_account_id => p_rec.gl_error_ac_id
439: );
440: --
441: hr_utility.set_location(' Leaving:'||l_proc, 10);
442: End insert_validate;
443: --
444: -- ----------------------------------------------------------------------------
445: -- |---------------------------< update_validate >----------------------------|

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

454: --
455: l_proc varchar2(72) := g_package||'update_validate';
456: --
457: Begin
458: hr_utility.set_location('Entering:'||l_proc, 5);
459: --
460: -- Call all supporting business operations
461: --
462: -- Validate Dependent Attributes

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

493: chk_gl_account_id
494: (p_gl_account_id => p_rec.gl_error_ac_id
495: );
496: --
497: hr_utility.set_location(' Leaving:'||l_proc, 10);
498: End update_validate;
499: --
500: -- ----------------------------------------------------------------------------
501: -- |---------------------------< delete_validate >----------------------------|

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

510: --
511: l_proc varchar2(72) := g_package||'delete_validate';
512: --
513: Begin
514: hr_utility.set_location('Entering:'||l_proc, 5);
515: --
516: -- Call all supporting business operations
517: --
518: dt_delete_validate

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

521: ,p_validation_end_date => p_validation_end_date
522: ,p_pay_gl_account_id => p_rec.pay_gl_account_id
523: );
524: --
525: hr_utility.set_location(' Leaving:'||l_proc, 10);
526: End delete_validate;
527: --
528: end pay_pga_bus;