DBA Data[Home] [Help]

APPS.HR_HK_PEOPLE_LEG_HOOK dependencies on HR_UTILITY

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

15: l_proc VARCHAR2(200) := g_package||'check_hkid_passport';
16: l_system_person_type per_person_types.system_person_type%type;
17:
18: BEGIN
19: hr_utility.set_location('Entering:'|| l_proc, 10);
20:
21: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'HK') THEN
22: hr_utility.trace ('HK Legislation not installed. Not performing the validations');
23: RETURN;

Line 21: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'HK') THEN

17:
18: BEGIN
19: hr_utility.set_location('Entering:'|| l_proc, 10);
20:
21: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'HK') THEN
22: hr_utility.trace ('HK Legislation not installed. Not performing the validations');
23: RETURN;
24: END IF;
25:

Line 22: hr_utility.trace ('HK Legislation not installed. Not performing the validations');

18: BEGIN
19: hr_utility.set_location('Entering:'|| l_proc, 10);
20:
21: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'HK') THEN
22: hr_utility.trace ('HK Legislation not installed. Not performing the validations');
23: RETURN;
24: END IF;
25:
26: OPEN csr_val_person_type(p_person_type_id);

Line 41: hr_utility.set_message(800,'HR_HK_HKID_OR_PASSPORT_INFO');

37: OR (p_per_information2 IS NULL)
38: OR (p_per_information3 IS NULL)
39: OR (p_per_information4 IS NULL)) THEN
40: -- Error
41: hr_utility.set_message(800,'HR_HK_HKID_OR_PASSPORT_INFO');
42: hr_utility.raise_error;
43: END IF;
44: END IF;
45: END IF;

Line 42: hr_utility.raise_error;

38: OR (p_per_information3 IS NULL)
39: OR (p_per_information4 IS NULL)) THEN
40: -- Error
41: hr_utility.set_message(800,'HR_HK_HKID_OR_PASSPORT_INFO');
42: hr_utility.raise_error;
43: END IF;
44: END IF;
45: END IF;
46: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

42: hr_utility.raise_error;
43: END IF;
44: END IF;
45: END IF;
46: hr_utility.set_location(' Leaving:'||l_proc, 20);
47: END check_hkid_passport;
48:
49:
50:

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

56: l_proc VARCHAR2(200) := g_package|| 'check_hongkong_name';
57: l_system_person_type per_person_types.system_person_type%type;
58:
59: BEGIN
60: hr_utility.set_location('Entering:'|| l_proc, 10);
61:
62: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'HK') THEN
63: hr_utility.trace ('HK Legislation not installed. Not performing the validations');
64: RETURN;

Line 62: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'HK') THEN

58:
59: BEGIN
60: hr_utility.set_location('Entering:'|| l_proc, 10);
61:
62: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'HK') THEN
63: hr_utility.trace ('HK Legislation not installed. Not performing the validations');
64: RETURN;
65: END IF;
66:

Line 63: hr_utility.trace ('HK Legislation not installed. Not performing the validations');

59: BEGIN
60: hr_utility.set_location('Entering:'|| l_proc, 10);
61:
62: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'HK') THEN
63: hr_utility.trace ('HK Legislation not installed. Not performing the validations');
64: RETURN;
65: END IF;
66:
67: OPEN csr_val_person_type(p_person_type_id);

Line 74: hr_utility.set_message('800', 'HR_HK_HONGKONG_NAME');

70: CLOSE csr_val_person_type;
71:
72: IF l_system_person_type like 'EMP%' THEN
73: IF (p_per_information6 IS NULL) THEN
74: hr_utility.set_message('800', 'HR_HK_HONGKONG_NAME');
75: hr_utility.raise_error;
76: END IF;
77: END IF;
78:

Line 75: hr_utility.raise_error;

71:
72: IF l_system_person_type like 'EMP%' THEN
73: IF (p_per_information6 IS NULL) THEN
74: hr_utility.set_message('800', 'HR_HK_HONGKONG_NAME');
75: hr_utility.raise_error;
76: END IF;
77: END IF;
78:
79: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

75: hr_utility.raise_error;
76: END IF;
77: END IF;
78:
79: hr_utility.set_location(' Leaving:'||l_proc, 20);
80: EXCEPTION
81: WHEN OTHERS THEN
82: hr_utility.trace('Error in ' || l_proc );
83: raise;

Line 82: hr_utility.trace('Error in ' || l_proc );

78:
79: hr_utility.set_location(' Leaving:'||l_proc, 20);
80: EXCEPTION
81: WHEN OTHERS THEN
82: hr_utility.trace('Error in ' || l_proc );
83: raise;
84: END check_hongkong_name;
85:
86: