DBA Data[Home] [Help]

APPS.HR_AE_CONTINGENT_WORKER_API dependencies on HR_UTILITY

Line 6: g_debug boolean := hr_utility.debug_enabled;

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

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

137:
138: begin
139:
140: if g_debug then
141: hr_utility.set_location('Entering:'|| l_proc, 5);
142: end if;
143: --
144: -- Validation in addition to Row Handlers
145: --

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

147: open check_legislation(p_business_group_id);
148: fetch check_legislation into l_legislation_code;
149: close check_legislation;
150: if g_debug then
151: hr_utility.set_location(l_proc, 20);
152: end if;
153: --
154: -- Check that the legislation of the specified business group is 'AE'.
155: --

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

153: --
154: -- Check that the legislation of the specified business group is 'AE'.
155: --
156: if l_legislation_code <> 'AE' then
157: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
158: hr_utility.set_message_token('LEG_CODE','AE');
159: hr_utility.raise_error;
160: end if;
161: if g_debug then

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

154: -- Check that the legislation of the specified business group is 'AE'.
155: --
156: if l_legislation_code <> 'AE' then
157: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
158: hr_utility.set_message_token('LEG_CODE','AE');
159: hr_utility.raise_error;
160: end if;
161: if g_debug then
162: hr_utility.set_location(l_proc, 30);

Line 159: hr_utility.raise_error;

155: --
156: if l_legislation_code <> 'AE' then
157: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
158: hr_utility.set_message_token('LEG_CODE','AE');
159: hr_utility.raise_error;
160: end if;
161: if g_debug then
162: hr_utility.set_location(l_proc, 30);
163: end if;

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

158: hr_utility.set_message_token('LEG_CODE','AE');
159: hr_utility.raise_error;
160: end if;
161: if g_debug then
162: hr_utility.set_location(l_proc, 30);
163: end if;
164:
165: hr_contingent_worker_api.create_cwk
166: (p_validate => p_validate

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

278: );
279:
280: --
281: if g_debug then
282: hr_utility.set_location(' Leaving:'||l_proc, 7);
283: end if;
284: --
285:
286: end create_ae_cwk;