DBA Data[Home] [Help]

APPS.HR_SE_CONTINGENT_WORKER_API dependencies on HR_UTILITY

Line 6: g_debug boolean := hr_utility.debug_enabled;

2: /* $Header: pecwksei.pkb 120.0 2005/05/31 07:28:25 appldev noship $ */
3: --
4: -- Package Variables
5: g_package varchar2(33) := ' hr_se_contingent_worker_api.';
6: g_debug boolean := hr_utility.debug_enabled;
7: --
8: -- ----------------------------------------------------------------------------
9: -- |------------------------------< create_se_cwk >------------------------------|
10: -- ----------------------------------------------------------------------------

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

128:
129: begin
130:
131: if g_debug then
132: hr_utility.set_location('Entering:'|| l_proc, 5);
133: end if;
134: --
135: -- Validation in addition to Row Handlers
136: --

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

138: open check_legislation(p_business_group_id);
139: fetch check_legislation into l_legislation_code;
140: close check_legislation;
141: if g_debug then
142: hr_utility.set_location(l_proc, 20);
143: end if;
144: --
145: -- Check that the legislation of the specified business group is 'SE'.
146: --

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

144: --
145: -- Check that the legislation of the specified business group is 'SE'.
146: --
147: if l_legislation_code <> 'SE' then
148: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
149: hr_utility.set_message_token('LEG_CODE','SE');
150: hr_utility.raise_error;
151: end if;
152: if g_debug then

Line 149: hr_utility.set_message_token('LEG_CODE','SE');

145: -- Check that the legislation of the specified business group is 'SE'.
146: --
147: if l_legislation_code <> 'SE' then
148: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
149: hr_utility.set_message_token('LEG_CODE','SE');
150: hr_utility.raise_error;
151: end if;
152: if g_debug then
153: hr_utility.set_location(l_proc, 30);

Line 150: hr_utility.raise_error;

146: --
147: if l_legislation_code <> 'SE' then
148: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
149: hr_utility.set_message_token('LEG_CODE','SE');
150: hr_utility.raise_error;
151: end if;
152: if g_debug then
153: hr_utility.set_location(l_proc, 30);
154: end if;

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

149: hr_utility.set_message_token('LEG_CODE','SE');
150: hr_utility.raise_error;
151: end if;
152: if g_debug then
153: hr_utility.set_location(l_proc, 30);
154: end if;
155:
156: hr_contingent_worker_api.create_cwk
157: (p_validate => p_validate

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

260: );
261:
262: --
263: if g_debug then
264: hr_utility.set_location(' Leaving:'||l_proc, 7);
265: end if;
266: --
267:
268: end create_se_cwk;