DBA Data[Home] [Help]

APPS.HR_DE_EMPLOYEE_API dependencies on HR_UTILITY

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

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

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

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

Line 146: hr_utility.raise_error;

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

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

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

Line 154: hr_utility.set_message_token('LEG_CODE','DE');

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

Line 155: hr_utility.raise_error;

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

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

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

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

271: ,p_assign_payroll_warning => p_assign_payroll_warning
272: ,p_orig_hire_warning => p_orig_hire_warning
273: );
274: --
275: hr_utility.set_location(' Leaving:'||l_proc, 7);
276: --
277: end create_de_employee;
278: --
279: end hr_de_employee_api;