DBA Data[Home] [Help]

APPS.HR_AE_CONTACT_API dependencies on HR_UTILITY

Line 6: g_debug boolean := hr_utility.debug_enabled;

2: /* $Header: peconaei.pkb 120.3.12000000.1 2007/01/21 21:24:44 appldev ship $ */
3: --
4: -- Package Variables
5: g_package varchar2(33) := 'hr_ae_contact_api';
6: g_debug boolean := hr_utility.debug_enabled;
7:
8: --
9: -- ----------------------------------------------------------------------------
10: -- |----------------------------< create_ae_person >-----------------------------|

Line 115: hr_utility.set_location('Entering:'|| l_proc, 5);

111: where bgp.business_group_id = c_business_group_id;
112: begin
113:
114: if g_debug then
115: hr_utility.set_location('Entering:'|| l_proc, 5);
116: end if;
117: --
118: -- Validation in addition to Row Handlers
119: --

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

121: open check_legislation(p_business_group_id);
122: fetch check_legislation into l_legislation_code;
123: close check_legislation;
124: if g_debug then
125: hr_utility.set_location(l_proc, 20);
126: end if;
127: --
128: -- Check that the legislation of the specified business group is 'AE'.
129: --

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

127: --
128: -- Check that the legislation of the specified business group is 'AE'.
129: --
130: if l_legislation_code <> 'AE' then
131: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
132: hr_utility.set_message_token('LEG_CODE','AE');
133: hr_utility.raise_error;
134: end if;
135: if g_debug then

Line 132: hr_utility.set_message_token('LEG_CODE','AE');

128: -- Check that the legislation of the specified business group is 'AE'.
129: --
130: if l_legislation_code <> 'AE' then
131: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
132: hr_utility.set_message_token('LEG_CODE','AE');
133: hr_utility.raise_error;
134: end if;
135: if g_debug then
136: hr_utility.set_location(l_proc, 30);

Line 133: hr_utility.raise_error;

129: --
130: if l_legislation_code <> 'AE' then
131: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
132: hr_utility.set_message_token('LEG_CODE','AE');
133: hr_utility.raise_error;
134: end if;
135: if g_debug then
136: hr_utility.set_location(l_proc, 30);
137: end if;

Line 136: hr_utility.set_location(l_proc, 30);

132: hr_utility.set_message_token('LEG_CODE','AE');
133: hr_utility.raise_error;
134: end if;
135: if g_debug then
136: hr_utility.set_location(l_proc, 30);
137: end if;
138:
139: hr_contact_api.create_person
140: (p_validate => p_validate

Line 229: hr_utility.set_location(' Leaving:'||l_proc, 7);

225: ,p_orig_hire_warning => p_orig_hire_warning);
226:
227: --
228: if g_debug then
229: hr_utility.set_location(' Leaving:'||l_proc, 7);
230: end if;
231: --
232: end create_ae_person;
233: end hr_ae_contact_api;