DBA Data[Home] [Help]

APPS.HR_SA_CONTINGENT_WORKER_API dependencies on HR_UTILITY

Line 6: g_debug boolean := hr_utility.debug_enabled;

2: /* $Header: pecwksai.pkb 120.3 2005/06/20 02:16:48 adevanat noship $ */
3: --
4: -- Package Variables
5: g_package varchar2(33) := ' hr_sa_contingent_worker_api.';
6: g_debug boolean := hr_utility.debug_enabled;
7: --
8: -- ----------------------------------------------------------------------------
9: -- |------------------------------< create_cwk >------------------------------|
10: -- ----------------------------------------------------------------------------

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

132:
133: begin
134:
135: if g_debug then
136: hr_utility.set_location('Entering:'|| l_proc, 5);
137: end if;
138: --
139: -- Validation in addition to Row Handlers
140: --

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

142: open check_legislation(p_business_group_id);
143: fetch check_legislation into l_legislation_code;
144: close check_legislation;
145: if g_debug then
146: hr_utility.set_location(l_proc, 20);
147: end if;
148: --
149: -- Check that the legislation of the specified business group is 'SA'.
150: --

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

148: --
149: -- Check that the legislation of the specified business group is 'SA'.
150: --
151: if l_legislation_code <> 'SA' then
152: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
153: hr_utility.set_message_token('LEG_CODE','SA');
154: hr_utility.raise_error;
155: end if;
156: if g_debug then

Line 153: hr_utility.set_message_token('LEG_CODE','SA');

149: -- Check that the legislation of the specified business group is 'SA'.
150: --
151: if l_legislation_code <> 'SA' then
152: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
153: hr_utility.set_message_token('LEG_CODE','SA');
154: hr_utility.raise_error;
155: end if;
156: if g_debug then
157: hr_utility.set_location(l_proc, 30);

Line 154: hr_utility.raise_error;

150: --
151: if l_legislation_code <> 'SA' then
152: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
153: hr_utility.set_message_token('LEG_CODE','SA');
154: hr_utility.raise_error;
155: end if;
156: if g_debug then
157: hr_utility.set_location(l_proc, 30);
158: end if;

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

153: hr_utility.set_message_token('LEG_CODE','SA');
154: hr_utility.raise_error;
155: end if;
156: if g_debug then
157: hr_utility.set_location(l_proc, 30);
158: end if;
159:
160: hr_contingent_worker_api.create_cwk
161: (p_validate => p_validate

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

268: );
269:
270: --
271: if g_debug then
272: hr_utility.set_location(' Leaving:'||l_proc, 7);
273: end if;
274: --
275:
276: end create_sa_cwk;