DBA Data[Home] [Help]

APPS.HR_DK_EMPLOYEE_API dependencies on HR_UTILITY

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

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

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

140: FETCH csr_bg
141: INTO l_legislation_code;
142: IF csr_bg%notfound THEN
143: CLOSE csr_bg;
144: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
145: hr_utility.raise_error;
146: END IF;
147: CLOSE csr_bg;
148: hr_utility.set_location(l_proc, 20);

Line 145: hr_utility.raise_error;

141: INTO l_legislation_code;
142: IF csr_bg%notfound THEN
143: CLOSE csr_bg;
144: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
145: hr_utility.raise_error;
146: END IF;
147: CLOSE csr_bg;
148: hr_utility.set_location(l_proc, 20);
149: --

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

144: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
145: hr_utility.raise_error;
146: END IF;
147: CLOSE csr_bg;
148: hr_utility.set_location(l_proc, 20);
149: --
150: -- Check that the legislation of the specified business group is 'FI'.
151: --
152: IF l_legislation_code <> 'DK' THEN

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 'FI'.
151: --
152: IF l_legislation_code <> 'DK' THEN
153: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
154: hr_utility.set_message_token('LEG_CODE','DK');
155: hr_utility.raise_error;
156: END IF;
157: hr_utility.set_location(l_proc, 30);

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

150: -- Check that the legislation of the specified business group is 'FI'.
151: --
152: IF l_legislation_code <> 'DK' THEN
153: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
154: hr_utility.set_message_token('LEG_CODE','DK');
155: hr_utility.raise_error;
156: END IF;
157: hr_utility.set_location(l_proc, 30);
158: --

Line 155: hr_utility.raise_error;

151: --
152: IF l_legislation_code <> 'DK' THEN
153: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
154: hr_utility.set_message_token('LEG_CODE','DK');
155: hr_utility.raise_error;
156: END IF;
157: hr_utility.set_location(l_proc, 30);
158: --
159: -- Call the person business process

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

153: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
154: hr_utility.set_message_token('LEG_CODE','DK');
155: hr_utility.raise_error;
156: END IF;
157: hr_utility.set_location(l_proc, 30);
158: --
159: -- Call the person business process
160: --
161: hr_employee_api.create_employee

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

270: ,p_name_combination_warning => p_name_combination_warning
271: ,p_assign_payroll_warning => p_assign_payroll_warning
272: ,p_orig_hire_warning => p_orig_hire_warning);
273: --
274: hr_utility.set_location(' Leaving:'||l_proc, 40);
275: --
276: end create_dk_employee;
277: end hr_dk_employee_api;