DBA Data[Home] [Help]

APPS.HR_SG_PEOPLE_LEG_HOOK dependencies on HR_UTILITY

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

12: --
13: -- It will raise an error if the Legal Name has not been entered
14: -- when the person is EMPLOYEE
15: --
16: hr_utility.set_location('Entering:'|| l_proc, 10);
17:
18: if hr_multi_message.no_exclusive_error
19: (p_check_column1 => 'PER_ALL_PEOPLE_F.PER_INFORMATION1'
20: ) then

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

29: );
30: end if;
31: end if;
32: end if;
33: hr_utility.set_location('Leaving:'|| l_proc, 20);
34: end check_sg_legal_name;
35:
36: procedure check_sg_income_tax( p_person_type_id NUMBER
37: ,p_national_identifier VARCHAR2

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

43: --
44: -- It will raise an error if the income tax number has not been
45: -- entered when the NRIC number is blank
46: --
47: hr_utility.set_location('Entering:'|| l_proc,10);
48:
49: OPEN csr_val_person_type(p_person_type_id);
50: FETCH csr_val_person_type INTO
51: l_system_person_type;

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

61: hr_multi_message.add
62: (p_associated_column1 => 'PER_ALL_PEOPLE_F.PER_INFORMATION12');
63: end if;
64: end if;
65: hr_utility.set_location(' Leaving:'|| l_proc, 20);
66: end if;
67: END IF;
68: end check_sg_income_tax;
69: end hr_sg_people_leg_hook;