DBA Data[Home] [Help]

APPS.HR_CA_EMPLOYEE_API dependencies on HR_UTILITY

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

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

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

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

Line 148: hr_utility.raise_error;

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

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

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

Line 156: hr_utility.set_message_token('LEG_CODE','CA');

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

Line 157: hr_utility.raise_error;

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

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

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

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

275: ,p_assign_payroll_warning => p_assign_payroll_warning
276: ,p_orig_hire_warning => p_orig_hire_warning
277: );
278: --
279: hr_utility.set_location(' Leaving:'||l_proc, 7);
280: --
281: end create_ca_employee;
282: --
283: end hr_ca_employee_api;