DBA Data[Home] [Help]

APPS.HR_FI_CONTINGENT_WORKER_API dependencies on HR_UTILITY

Line 6: g_debug boolean := hr_utility.debug_enabled;

2: /* $Header: pecwkfii.pkb 120.1.12000000.2 2007/02/14 12:19:49 dbehera ship $ */
3: --
4: -- Package Variables
5: g_package varchar2(33) := ' hr_fi_contingent_worker_api.';
6: g_debug boolean := hr_utility.debug_enabled;
7: --
8: -- ----------------------------------------------------------------------------
9: -- |------------------------------< create_fi_cwk >------------------------------|
10: -- ----------------------------------------------------------------------------

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

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

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

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

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

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

Line 161: hr_utility.set_message_token('LEG_CODE','FI');

157: -- Check that the legislation of the specified business group is 'FI'.
158: --
159: if l_legislation_code <> 'FI' then
160: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
161: hr_utility.set_message_token('LEG_CODE','FI');
162: hr_utility.raise_error;
163: end if;
164:
165: if p_membership_start_date is not null and p_membership_end_date is not null and

Line 162: hr_utility.raise_error;

158: --
159: if l_legislation_code <> 'FI' then
160: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
161: hr_utility.set_message_token('LEG_CODE','FI');
162: hr_utility.raise_error;
163: end if;
164:
165: if p_membership_start_date is not null and p_membership_end_date is not null and
166: p_membership_start_date > p_membership_end_date then

Line 167: hr_utility.set_message(801, 'HR_376639_FI_VALID_DATE');

163: end if;
164:
165: if p_membership_start_date is not null and p_membership_end_date is not null and
166: p_membership_start_date > p_membership_end_date then
167: hr_utility.set_message(801, 'HR_376639_FI_VALID_DATE');
168: hr_utility.set_message_token('LEG_CODE','FI');
169: hr_utility.raise_error;
170: end if;
171:

Line 168: hr_utility.set_message_token('LEG_CODE','FI');

164:
165: if p_membership_start_date is not null and p_membership_end_date is not null and
166: p_membership_start_date > p_membership_end_date then
167: hr_utility.set_message(801, 'HR_376639_FI_VALID_DATE');
168: hr_utility.set_message_token('LEG_CODE','FI');
169: hr_utility.raise_error;
170: end if;
171:
172: if g_debug then

Line 169: hr_utility.raise_error;

165: if p_membership_start_date is not null and p_membership_end_date is not null and
166: p_membership_start_date > p_membership_end_date then
167: hr_utility.set_message(801, 'HR_376639_FI_VALID_DATE');
168: hr_utility.set_message_token('LEG_CODE','FI');
169: hr_utility.raise_error;
170: end if;
171:
172: if g_debug then
173: hr_utility.set_location(l_proc, 30);

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

169: hr_utility.raise_error;
170: end if;
171:
172: if g_debug then
173: hr_utility.set_location(l_proc, 30);
174: end if;
175:
176: hr_contingent_worker_api.create_cwk
177: (p_validate => p_validate

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

292: );
293:
294: --
295: if g_debug then
296: hr_utility.set_location(' Leaving:'||l_proc, 7);
297: end if;
298: --
299:
300: end create_fi_cwk;