DBA Data[Home] [Help]

APPS.HR_BE_EMPLOYEE_API dependencies on HR_UTILITY

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

131: from per_business_groups pbg
132: where pbg.business_group_id = p_business_group_id;
133: --
134: begin
135: hr_utility.set_location('Entering:'|| l_proc, 5);
136: --
137: -- Validation in addition to Row Handlers
138: --
139: -- Check that the specified business group is valid.

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

142: fetch csr_bg
143: into l_legislation_code;
144: if csr_bg%notfound then
145: close csr_bg;
146: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
147: hr_utility.raise_error;
148: end if;
149: close csr_bg;
150: --

Line 147: hr_utility.raise_error;

143: into l_legislation_code;
144: if csr_bg%notfound then
145: close csr_bg;
146: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
147: hr_utility.raise_error;
148: end if;
149: close csr_bg;
150: --
151: -- Check that the legislation of the specified business group is 'BE'.

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

150: --
151: -- Check that the legislation of the specified business group is 'BE'.
152: --
153: if l_legislation_code <> 'BE' then
154: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
155: hr_utility.set_message_token('LEG_CODE','BE');
156: hr_utility.raise_error;
157: end if;
158: --

Line 155: hr_utility.set_message_token('LEG_CODE','BE');

151: -- Check that the legislation of the specified business group is 'BE'.
152: --
153: if l_legislation_code <> 'BE' then
154: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
155: hr_utility.set_message_token('LEG_CODE','BE');
156: hr_utility.raise_error;
157: end if;
158: --
159: hr_utility.set_location(l_proc, 6);

Line 156: hr_utility.raise_error;

152: --
153: if l_legislation_code <> 'BE' then
154: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
155: hr_utility.set_message_token('LEG_CODE','BE');
156: hr_utility.raise_error;
157: end if;
158: --
159: hr_utility.set_location(l_proc, 6);
160: --

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

155: hr_utility.set_message_token('LEG_CODE','BE');
156: hr_utility.raise_error;
157: end if;
158: --
159: hr_utility.set_location(l_proc, 6);
160: --
161: -- Call the person business process
162: --
163: hr_employee_api.create_employee

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

273: ,p_assign_payroll_warning => p_assign_payroll_warning
274: ,p_orig_hire_warning => p_orig_hire_warning
275: );
276: --
277: hr_utility.set_location(' Leaving:'||l_proc, 7);
278: --
279: end create_be_employee;
280: -- ----------------------------------------------------------------
281: --

Line 404: hr_utility.set_location('Entering:'||l_proc,222);

400: l_orig_hire_warning boolean := false;
401: --
402: begin
403: --
404: hr_utility.set_location('Entering:'||l_proc,222);
405: --
406: hr_be_employee_api.create_be_employee
407: (p_validate => p_validate
408: ,p_hire_date => p_hire_date

Line 519: hr_utility.set_location('Leaving:'||l_proc,222);

515: ,p_assign_payroll_warning => p_assign_payroll_warning
516: ,p_orig_hire_warning => l_orig_hire_warning
517: );
518: --
519: hr_utility.set_location('Leaving:'||l_proc,222);
520: --
521: end create_be_employee;
522: --
523: -- End of fix for bug 899720