DBA Data[Home] [Help]

APPS.PE_FR_ADDITIONAL_ORG_RULES dependencies on HR_UTILITY

Line 34: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'FR') THEN

30: l_proc varchar2(72) := g_package || '.fr_validate_org_info_ins';
31: Begin
32: --
33: /* Added for GSI Bug 5472781 */
34: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'FR') THEN
35: hr_utility.set_location('Leaving : '||l_proc , 10);
36: return;
37: END IF;
38: --

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

31: Begin
32: --
33: /* Added for GSI Bug 5472781 */
34: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'FR') THEN
35: hr_utility.set_location('Leaving : '||l_proc , 10);
36: return;
37: END IF;
38: --
39: hr_utility.set_location('Entering '|| l_proc , 10);

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

35: hr_utility.set_location('Leaving : '||l_proc , 10);
36: return;
37: END IF;
38: --
39: hr_utility.set_location('Entering '|| l_proc , 10);
40: pe_fr_additional_org_rules.fr_validate_org_info(
41: p_effective_date => p_effective_date
42: ,p_org_info_type_code => p_org_info_type_code
43: ,p_organization_id => p_organization_id

Line 50: hr_utility.set_location('Leaving '||l_proc,800);

46: ,p_org_information3 => p_org_information3
47: ,p_org_information4 => p_org_information4
48: ,p_org_information5 => p_org_information5);
49: --
50: hr_utility.set_location('Leaving '||l_proc,800);
51: --
52: END fr_validate_org_info_ins;
53:
54: PROCEDURE fr_validate_org_info_upd

Line 84: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'FR') THEN

80: l_proc varchar2(72) := g_package || '.fr_validate_org_info_upd';
81: BEGIN
82: --
83: /* Added for GSI Bug 5472781 */
84: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'FR') THEN
85: hr_utility.set_location('Leaving : '||l_proc , 10);
86: return;
87: END IF;
88: --

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

81: BEGIN
82: --
83: /* Added for GSI Bug 5472781 */
84: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'FR') THEN
85: hr_utility.set_location('Leaving : '||l_proc , 10);
86: return;
87: END IF;
88: --
89: hr_utility.set_location('Entering '||l_proc , 10);

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

85: hr_utility.set_location('Leaving : '||l_proc , 10);
86: return;
87: END IF;
88: --
89: hr_utility.set_location('Entering '||l_proc , 10);
90:
91: pe_fr_additional_org_rules.fr_validate_org_info(
92: p_effective_date => p_effective_date
93: ,p_org_info_type_code => p_org_info_type_code

Line 102: hr_utility.set_location('Leaving '||l_proc,800);

98: ,p_org_information5 => p_org_information5
99: ,p_org_information_id => p_org_information_id
100: ,p_object_version_number => p_object_version_number);
101:
102: hr_utility.set_location('Leaving '||l_proc,800);
103: --
104: END fr_validate_org_info_upd;
105:
106: PROCEDURE fr_validate_org_info

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

163: l_overlap varchar2(1);
164:
165: BEGIN
166: --
167: hr_utility.set_location('Entering '||l_proc , 10);
168: --
169: if p_org_info_type_code in ('FR_COMP_ACCRUAL_RATE'
170: ,'FR_COMP_CADRE_LIFE_INSURE'
171: ,'FR_COMP_COMP_PENSION_T2'

Line 238: hr_utility.set_location('Leaving '||l_proc,800);

234: fnd_message.raise_error;
235: END IF; -- if csr_chk_overlaps%FOUND
236: close csr_chk_overlaps;
237: END IF; -- p_org_info_type_code in ...
238: hr_utility.set_location('Leaving '||l_proc,800);
239: --
240: END fr_validate_org_info;
241: END pe_fr_additional_org_rules;