DBA Data[Home] [Help]

APPS.HR_IN_ASSIGNMENT_API dependencies on HR_UTILITY

Line 37: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');

33: FETCH csr_emp_leg into l_legislation_code;
34:
35: IF csr_emp_leg%notfound THEN
36: CLOSE csr_emp_leg;
37: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
38: hr_utility.raise_error;
39: END IF;
40: CLOSE csr_emp_leg;
41:

Line 38: hr_utility.raise_error;

34:
35: IF csr_emp_leg%notfound THEN
36: CLOSE csr_emp_leg;
37: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
38: hr_utility.raise_error;
39: END IF;
40: CLOSE csr_emp_leg;
41:
42: --

Line 46: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');

42: --
43: -- Check that the legislation of the specified business group is 'IN'.
44: --
45: IF l_legislation_code <> p_legislation_code THEN
46: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
47: hr_utility.set_message_token('LEG_CODE','IN');
48: hr_utility.raise_error;
49: END IF;
50:

Line 47: hr_utility.set_message_token('LEG_CODE','IN');

43: -- Check that the legislation of the specified business group is 'IN'.
44: --
45: IF l_legislation_code <> p_legislation_code THEN
46: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
47: hr_utility.set_message_token('LEG_CODE','IN');
48: hr_utility.raise_error;
49: END IF;
50:
51: EXCEPTION

Line 48: hr_utility.raise_error;

44: --
45: IF l_legislation_code <> p_legislation_code THEN
46: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
47: hr_utility.set_message_token('LEG_CODE','IN');
48: hr_utility.raise_error;
49: END IF;
50:
51: EXCEPTION
52: WHEN OTHERS THEN

Line 233: g_trace := hr_utility.debug_enabled ;

229:
230:
231: l_proc := g_package||'create_secondary_emp_asg';
232: l_effective_date := trunc(p_effective_date);
233: g_trace := hr_utility.debug_enabled ;
234:
235: IF g_trace THEN
236: hr_utility.set_location('Entering: '||l_proc, 10);
237: END IF ;

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

232: l_effective_date := trunc(p_effective_date);
233: g_trace := hr_utility.debug_enabled ;
234:
235: IF g_trace THEN
236: hr_utility.set_location('Entering: '||l_proc, 10);
237: END IF ;
238:
239: check_person (p_person_id ,'IN', l_effective_date);
240:

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

238:
239: check_person (p_person_id ,'IN', l_effective_date);
240:
241: IF g_trace THEN
242: hr_utility.set_location(l_proc, 20);
243: END IF ;
244:
245: hr_assignment_api.create_secondary_emp_asg
246: (p_validate => p_validate

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

400: ,p_hourly_salaried_warning => p_hourly_salaried_warning
401: ,p_gsp_post_process_warning => p_gsp_post_process_warning);
402:
403: IF g_trace THEN
404: hr_utility.set_location('Leaving: '||l_proc, 30);
405: END IF ;
406:
407: END create_in_secondary_emp_asg;
408:

Line 536: g_trace := hr_utility.debug_enabled ;

532: --
533: BEGIN
534:
535: l_proc := g_package||'update_emp_asg';
536: g_trace := hr_utility.debug_enabled ;
537:
538: IF g_trace THEN
539: hr_utility.set_location('Entering: '||l_proc, 10);
540: END IF ;

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

535: l_proc := g_package||'update_emp_asg';
536: g_trace := hr_utility.debug_enabled ;
537:
538: IF g_trace THEN
539: hr_utility.set_location('Entering: '||l_proc, 10);
540: END IF ;
541:
542: hr_assignment_api.update_emp_asg
543: (p_validate => p_validate

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

655: ,p_gsp_post_process_warning => p_gsp_post_process_warning
656: );
657:
658: IF g_trace THEN
659: hr_utility.set_location(l_proc, 20);
660: END IF ;
661:
662: END update_in_emp_asg;
663:

Line 803: g_trace := hr_utility.debug_enabled ;

799: BEGIN
800:
801: l_proc := g_package||'create_in_secondary_cwk_asg';
802: l_effective_date := trunc(p_effective_date);
803: g_trace := hr_utility.debug_enabled ;
804: l_cwk_check := 0;
805:
806: IF g_trace THEN
807: hr_utility.set_location('Entering: '||l_proc, 10);

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

803: g_trace := hr_utility.debug_enabled ;
804: l_cwk_check := 0;
805:
806: IF g_trace THEN
807: hr_utility.set_location('Entering: '||l_proc, 10);
808: END IF ;
809:
810: OPEN csr_cwk_leg(p_person_id, l_effective_date, p_business_group_id);
811: FETCH csr_cwk_leg into l_cwk_check;

Line 815: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');

811: FETCH csr_cwk_leg into l_cwk_check;
812:
813: IF l_cwk_check = 0 THEN
814: CLOSE csr_cwk_leg;
815: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
816: hr_utility.raise_error;
817: END IF;
818: CLOSE csr_cwk_leg;
819:

Line 816: hr_utility.raise_error;

812:
813: IF l_cwk_check = 0 THEN
814: CLOSE csr_cwk_leg;
815: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
816: hr_utility.raise_error;
817: END IF;
818: CLOSE csr_cwk_leg;
819:
820: IF g_trace THEN

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

817: END IF;
818: CLOSE csr_cwk_leg;
819:
820: IF g_trace THEN
821: hr_utility.set_location(l_proc, 20);
822: END IF ;
823:
824: hr_assignment_api.create_secondary_cwk_asg
825: ( p_validate => p_validate

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

934: ,p_hourly_salaried_warning => p_hourly_salaried_warning
935: ,p_soft_coding_keyflex_id => p_soft_coding_keyflex_id );
936:
937: IF g_trace THEN
938: hr_utility.set_location('Leaving: '||l_proc, 30);
939: END IF ;
940:
941: END create_in_secondary_cwk_asg;
942:

Line 1031: g_trace := hr_utility.debug_enabled ;

1027:
1028: BEGIN
1029:
1030: l_proc := g_package||'update_cwk_asg';
1031: g_trace := hr_utility.debug_enabled ;
1032:
1033: IF g_trace THEN
1034: hr_utility.set_location('Entering: '||l_proc, 10);
1035: END IF ;

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

1030: l_proc := g_package||'update_cwk_asg';
1031: g_trace := hr_utility.debug_enabled ;
1032:
1033: IF g_trace THEN
1034: hr_utility.set_location('Entering: '||l_proc, 10);
1035: END IF ;
1036:
1037: hr_assignment_api.update_cwk_asg
1038: (p_validate => p_validate

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

1110: ,p_concatenated_segments => p_concatenated_segments
1111: ,p_hourly_salaried_warning => p_hourly_salaried_warning );
1112:
1113: IF g_trace THEN
1114: hr_utility.set_location('Entering: '||l_proc, 20);
1115: END IF ;
1116:
1117: END update_in_cwk_asg;
1118: