DBA Data[Home] [Help]

APPS.HR_SG_PEOPLE_LEG_HOOK dependencies on HR_MULTI_MESSAGE

Line 18: if hr_multi_message.no_exclusive_error

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
21: if p_per_information1 is NULL then
22: open csr_val_person_type(p_person_type_id);

Line 27: hr_multi_message.add

23: fetch csr_val_person_type into l_person_type;
24: close csr_val_person_type;
25: if l_person_type like 'EMP%' then
26: fnd_message.set_name('PAY', 'HR_SG_LEGAL_NAME_NULL');
27: hr_multi_message.add
28: (p_associated_column1 => 'PER_ALL_PEOPLE_F.PER_INFORMATION1'
29: );
30: end if;
31: end if;

Line 55: if hr_multi_message.no_exclusive_error

51: l_system_person_type;
52: CLOSE csr_val_person_type;
53:
54: IF l_system_person_type like 'EMP%' THEN
55: if hr_multi_message.no_exclusive_error
56: (p_check_column1 => 'PER_ALL_PEOPLE_F.PER_INFORMATION12'
57: ) then
58: if p_national_identifier is NULL then
59: if p_per_information12 is NULL then

Line 61: hr_multi_message.add

57: ) then
58: if p_national_identifier is NULL then
59: if p_per_information12 is NULL then
60: fnd_message.set_name('PAY','HR_SG_INCOME_TAX_NUMBER_NULL');
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);