DBA Data[Home] [Help]

APPS.HR_NZ_EMPLOYEE_API dependencies on HR_UTILITY

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

153: FROM per_business_groups pbg
154: WHERE pbg.business_group_id = p_business_group_id;
155: --
156: BEGIN
157: hr_utility.set_location('Entering:'|| l_proc, 5);
158: --
159: -- Validation in addition to Row Handlers
160: --
161: -- Check that the specified business group is valid.

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

164: FETCH csr_bg
165: INTO l_legislation_code;
166: IF (csr_bg%NOTFOUND) THEN
167: CLOSE csr_bg;
168: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
169: hr_utility.raise_error;
170: END IF;
171: CLOSE csr_bg;
172: --

Line 169: hr_utility.raise_error;

165: INTO l_legislation_code;
166: IF (csr_bg%NOTFOUND) THEN
167: CLOSE csr_bg;
168: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
169: hr_utility.raise_error;
170: END IF;
171: CLOSE csr_bg;
172: --
173: -- Check that the legislation of the specified business group is 'NZ'.

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

172: --
173: -- Check that the legislation of the specified business group is 'NZ'.
174: --
175: IF (l_legislation_code <> 'NZ') THEN
176: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
177: hr_utility.set_message_token('LEG_CODE','NZ');
178: hr_utility.raise_error;
179: END IF;
180:

Line 177: hr_utility.set_message_token('LEG_CODE','NZ');

173: -- Check that the legislation of the specified business group is 'NZ'.
174: --
175: IF (l_legislation_code <> 'NZ') THEN
176: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
177: hr_utility.set_message_token('LEG_CODE','NZ');
178: hr_utility.raise_error;
179: END IF;
180:
181: hr_utility.set_location(l_proc, 6);

Line 178: hr_utility.raise_error;

174: --
175: IF (l_legislation_code <> 'NZ') THEN
176: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
177: hr_utility.set_message_token('LEG_CODE','NZ');
178: hr_utility.raise_error;
179: END IF;
180:
181: hr_utility.set_location(l_proc, 6);
182: --

Line 181: hr_utility.set_location(l_proc, 6);

177: hr_utility.set_message_token('LEG_CODE','NZ');
178: hr_utility.raise_error;
179: END IF;
180:
181: hr_utility.set_location(l_proc, 6);
182: --
183: -- Call the person business process
184: --
185: hr_employee_api.create_employee

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

301: ,p_name_combination_warning => p_name_combination_warning
302: ,p_assign_payroll_warning => p_assign_payroll_warning
303: ,p_orig_hire_warning => p_orig_hire_warning
304: );
305: hr_utility.set_location(' Leaving:'||l_proc, 7);
306: END create_nz_employee;
307: END hr_nz_employee_api;