DBA Data[Home] [Help]

APPS.HR_FI_EMPLOYEE_API dependencies on HR_UTILITY

Line 152: hr_utility.set_location('Entering:'|| l_proc, 10);

148: FROM per_business_groups pbg
149: WHERE pbg.business_group_id = p_business_group_id;
150: --
151: BEGIN
152: hr_utility.set_location('Entering:'|| l_proc, 10);
153: --
154: -- Validation IN addition to Row Handlers
155: --
156: -- Check that the specified business group is valid.

Line 163: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');

159: FETCH csr_bg
160: INTO l_legislation_code;
161: IF csr_bg%notfound THEN
162: CLOSE csr_bg;
163: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
164: hr_utility.raise_error;
165: END IF;
166: CLOSE csr_bg;
167: hr_utility.set_location(l_proc, 20);

Line 164: hr_utility.raise_error;

160: INTO l_legislation_code;
161: IF csr_bg%notfound THEN
162: CLOSE csr_bg;
163: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
164: hr_utility.raise_error;
165: END IF;
166: CLOSE csr_bg;
167: hr_utility.set_location(l_proc, 20);
168: --

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

163: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
164: hr_utility.raise_error;
165: END IF;
166: CLOSE csr_bg;
167: hr_utility.set_location(l_proc, 20);
168: --
169: -- Check that the legislation of the specified business group is 'FI'.
170: --
171: IF l_legislation_code <> 'FI' THEN

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

168: --
169: -- Check that the legislation of the specified business group is 'FI'.
170: --
171: IF l_legislation_code <> 'FI' THEN
172: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
173: hr_utility.set_message_token('LEG_CODE','FI');
174: hr_utility.raise_error;
175: END IF;
176: if p_membership_start_date is not null and p_membership_end_date is not null and

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

169: -- Check that the legislation of the specified business group is 'FI'.
170: --
171: IF l_legislation_code <> 'FI' THEN
172: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
173: hr_utility.set_message_token('LEG_CODE','FI');
174: hr_utility.raise_error;
175: END IF;
176: if p_membership_start_date is not null and p_membership_end_date is not null and
177: p_membership_start_date > p_membership_end_date then

Line 174: hr_utility.raise_error;

170: --
171: IF l_legislation_code <> 'FI' THEN
172: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
173: hr_utility.set_message_token('LEG_CODE','FI');
174: hr_utility.raise_error;
175: END IF;
176: if p_membership_start_date is not null and p_membership_end_date is not null and
177: p_membership_start_date > p_membership_end_date then
178: hr_utility.set_message(801, 'HR_376639_FI_VALID_DATE');

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

174: hr_utility.raise_error;
175: END IF;
176: if p_membership_start_date is not null and p_membership_end_date is not null and
177: p_membership_start_date > p_membership_end_date then
178: hr_utility.set_message(801, 'HR_376639_FI_VALID_DATE');
179: hr_utility.set_message_token('LEG_CODE','FI');
180: hr_utility.raise_error;
181: end if;
182:

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

175: END IF;
176: if p_membership_start_date is not null and p_membership_end_date is not null and
177: p_membership_start_date > p_membership_end_date then
178: hr_utility.set_message(801, 'HR_376639_FI_VALID_DATE');
179: hr_utility.set_message_token('LEG_CODE','FI');
180: hr_utility.raise_error;
181: end if;
182:
183: hr_utility.set_location(l_proc, 30);

Line 180: hr_utility.raise_error;

176: if p_membership_start_date is not null and p_membership_end_date is not null and
177: p_membership_start_date > p_membership_end_date then
178: hr_utility.set_message(801, 'HR_376639_FI_VALID_DATE');
179: hr_utility.set_message_token('LEG_CODE','FI');
180: hr_utility.raise_error;
181: end if;
182:
183: hr_utility.set_location(l_proc, 30);
184: --

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

179: hr_utility.set_message_token('LEG_CODE','FI');
180: hr_utility.raise_error;
181: end if;
182:
183: hr_utility.set_location(l_proc, 30);
184: --
185: -- Call the person business process
186: --
187: hr_employee_api.create_employee

Line 319: hr_utility.set_location(' Leaving:'||l_proc, 40);

315: ,p_name_combination_warning => p_name_combination_warning
316: ,p_assign_payroll_warning => p_assign_payroll_warning
317: ,p_orig_hire_warning => p_orig_hire_warning);
318: --
319: hr_utility.set_location(' Leaving:'||l_proc, 40);
320: --
321: end create_fi_employee;
322: end hr_fi_employee_api;