DBA Data[Home] [Help]

APPS.HR_SA_EMPLOYEE_API dependencies on HR_UTILITY

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

134: FROM per_business_groups pbg
135: WHERE pbg.business_group_id = p_business_group_id;
136: --
137: BEGIN
138: hr_utility.set_location('Entering:'|| l_proc, 10);
139: --
140: -- Validation IN addition to Row Handlers
141: --
142: -- Check that the specified business group is valid.

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

145: FETCH csr_bg
146: INTO l_legislation_code;
147: IF csr_bg%notfound THEN
148: CLOSE csr_bg;
149: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
150: hr_utility.raise_error;
151: END IF;
152: CLOSE csr_bg;
153: hr_utility.set_location(l_proc, 20);

Line 150: hr_utility.raise_error;

146: INTO l_legislation_code;
147: IF csr_bg%notfound THEN
148: CLOSE csr_bg;
149: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
150: hr_utility.raise_error;
151: END IF;
152: CLOSE csr_bg;
153: hr_utility.set_location(l_proc, 20);
154: --

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

149: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
150: hr_utility.raise_error;
151: END IF;
152: CLOSE csr_bg;
153: hr_utility.set_location(l_proc, 20);
154: --
155: -- Check that the legislation of the specified business group is 'SA'.
156: --
157: IF l_legislation_code <> 'SA' THEN

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

154: --
155: -- Check that the legislation of the specified business group is 'SA'.
156: --
157: IF l_legislation_code <> 'SA' THEN
158: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
159: hr_utility.set_message_token('LEG_CODE','SA');
160: hr_utility.raise_error;
161: END IF;
162: hr_utility.set_location(l_proc, 30);

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

155: -- Check that the legislation of the specified business group is 'SA'.
156: --
157: IF l_legislation_code <> 'SA' THEN
158: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
159: hr_utility.set_message_token('LEG_CODE','SA');
160: hr_utility.raise_error;
161: END IF;
162: hr_utility.set_location(l_proc, 30);
163: --

Line 160: hr_utility.raise_error;

156: --
157: IF l_legislation_code <> 'SA' THEN
158: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
159: hr_utility.set_message_token('LEG_CODE','SA');
160: hr_utility.raise_error;
161: END IF;
162: hr_utility.set_location(l_proc, 30);
163: --
164: -- Call the person business process

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

158: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
159: hr_utility.set_message_token('LEG_CODE','SA');
160: hr_utility.raise_error;
161: END IF;
162: hr_utility.set_location(l_proc, 30);
163: --
164: -- Call the person business process
165: --
166: hr_employee_api.create_employee

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

281: ,p_name_combination_warning => p_name_combination_warning
282: ,p_assign_payroll_warning => p_assign_payroll_warning
283: ,p_orig_hire_warning => p_orig_hire_warning);
284: --
285: hr_utility.set_location(' Leaving:'||l_proc, 40);
286: --
287: end create_sa_employee;
288: end hr_sa_employee_api;