DBA Data[Home] [Help]

APPS.PER_NAA_BUS dependencies on HR_UTILITY

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

58: l_exists varchar2(1) := null;
59: l_api_updating boolean;
60: --
61: begin
62: hr_utility.set_location('Entering:'|| l_proc, 10);
63: --
64: hr_api.mandatory_arg_error
65: (p_api_name => l_proc
66: ,p_argument => 'p_absence_attendance_id'

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

78: fnd_message.raise_error;
79:
80: end if;
81:
82: hr_utility.set_location(' Leaving:'|| l_proc, 20);
83:
84: end chk_absence_attendance_id;
85: --
86: -- ---------------------------------------------------------------------------

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

130: l_exists varchar2(1) := null;
131: l_api_updating boolean;
132: --
133: begin
134: hr_utility.set_location('Entering:'|| l_proc, 10);
135: --
136: -- Check that the user table for absence category exists.
137: --
138: open cur_chk_abs_cat_user_tables;

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

144: fnd_message.raise_error;
145:
146: end if;
147:
148: hr_utility.set_location(' Leaving:'|| l_proc, 20);
149:
150: end chk_abs_cat_user_tables;
151: --
152: -- ---------------------------------------------------------------------------

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

197: l_api_updating boolean;
198: l_absence_date date;
199: --
200: begin
201: hr_utility.set_location('Entering:'|| l_proc, 10);
202: --
203: -- Check expected date for null
204: --
205: hr_api.mandatory_arg_error

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

220: fnd_message.raise_error;
221: end if;
222: -- end changes as per bug 2637189
223: --
224: hr_utility.set_location(' Leaving:'|| l_proc, 20);
225: --
226: end chk_expected_date;
227: --
228: -- ---------------------------------------------------------------------------

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

263: l_proc varchar2(72) := g_package||'chk_description';
264: l_api_updating boolean;
265: --
266: begin
267: hr_utility.set_location('Entering:'|| l_proc, 10);
268: --
269: hr_api.mandatory_arg_error
270: (p_api_name => l_proc
271: ,p_argument => 'p_description'

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

271: ,p_argument => 'p_description'
272: ,p_argument_value => p_description
273: );
274: --
275: hr_utility.set_location(' Leaving:'|| l_proc, 20);
276:
277: end chk_description;
278: --
279: --

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

317: l_proc varchar2(72) := g_package||'chk_start_and_end_dates';
318: l_api_updating boolean;
319: --
320: begin
321: hr_utility.set_location('Entering:'|| l_proc, 10);
322: --
323: if p_actual_start_date is not null and
324: p_actual_end_date is not null then
325: if p_actual_start_date > p_actual_end_date then

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

327: fnd_message.raise_error;
328: end if;
329: end if;
330: --
331: hr_utility.set_location(' Leaving:'|| l_proc, 20);
332:
333: end chk_start_and_end_dates;
334: --
335: -- ---------------------------------------------------------------------------

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

375: l_obj_num number(9) := null;
376: l_api_updating boolean;
377: --
378: begin
379: hr_utility.set_location('Entering:'|| l_proc, 10);
380: --
381: hr_api.mandatory_arg_error
382: (p_api_name => l_proc
383: ,p_argument => 'p_absence_action_id'

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

399: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
400: fnd_message.raise_error;
401: end if;
402:
403: hr_utility.set_location(' Leaving:'|| l_proc, 20);
404:
405: end chk_absence_action_id;
406: --
407: -- ---------------------------------------------------------------------------

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

429: l_proc varchar2(72) := g_package||'set_security_group_id';
430: --
431: begin
432: --
433: hr_utility.set_location('Entering:'|| l_proc, 10);
434: --
435: -- Ensure that all the mandatory parameter are not null
436: --
437: hr_api.mandatory_arg_error

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

459: (p_security_group_id => l_security_group_id
460: );
461: close csr_sec_grp;
462: --
463: hr_utility.set_location(' Leaving:'|| l_proc, 20);
464: --
465: end set_security_group_id;
466: --
467: -- ---------------------------------------------------------------------------

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

490: l_proc varchar2(72) := g_package||'return_legislation_code';
491: --
492: Begin
493: --
494: hr_utility.set_location('Entering:'|| l_proc, 10);
495: --
496: -- Ensure that all the mandatory parameter are not null
497: --
498: hr_api.mandatory_arg_error

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

508: -- call to this function. Just return the value in the global
509: -- variable.
510: --
511: l_legislation_code := per_naa_bus.g_legislation_code;
512: hr_utility.set_location(l_proc, 20);
513: else
514: --
515: -- The ID is different to the last call to this function
516: -- or this is the first call to this function.

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

525: close csr_leg_code;
526: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
527: fnd_message.raise_error;
528: end if;
529: hr_utility.set_location(l_proc,30);
530: --
531: -- Set the global variables so the values are
532: -- available for the next call to this function.
533: --

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

534: close csr_leg_code;
535: per_naa_bus.g_absence_action_id := p_absence_action_id;
536: per_naa_bus.g_legislation_code := l_legislation_code;
537: end if;
538: hr_utility.set_location(' Leaving:'|| l_proc, 40);
539: return l_legislation_code;
540: end return_legislation_code;
541: --
542: -- ----------------------------------------------------------------------------

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

600: --
601: l_proc varchar2(72) := g_package||'insert_validate';
602: --
603: Begin
604: hr_utility.set_location('Entering:'||l_proc, 5);
605: --
606: -- Check Absence attendance id
607: --
608: chk_absence_attendance_id

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

648: --
649: -- Validate Dependent Attributes
650: --
651: --
652: hr_utility.set_location(' Leaving:'||l_proc, 10);
653: End insert_validate;
654: --
655: -- ----------------------------------------------------------------------------
656: -- |---------------------------< update_validate >----------------------------|

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

661: --
662: l_proc varchar2(72) := g_package||'update_validate';
663: --
664: Begin
665: hr_utility.set_location('Entering:'||l_proc, 5);
666: --
667: -- Call all supporting business operations
668: --
669: -- Check absence is there with right version

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

714: (p_rec => p_rec
715: );
716: --
717: --
718: hr_utility.set_location(' Leaving:'||l_proc, 10);
719: End update_validate;
720: --
721: -- ----------------------------------------------------------------------------
722: -- |---------------------------< delete_validate >----------------------------|

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

727: --
728: l_proc varchar2(72) := g_package||'delete_validate';
729: --
730: Begin
731: hr_utility.set_location('Entering:'||l_proc, 5);
732: --
733: -- Call all supporting business operations
734: --
735: -- Check absence is there with right version

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

739: ,p_object_version_number => p_rec.object_version_number
740: );
741: --
742: --
743: hr_utility.set_location(' Leaving:'||l_proc, 10);
744: End delete_validate;
745: --
746: end per_naa_bus;