DBA Data[Home] [Help]

APPS.HR_KW_EMPLOYEE_API dependencies on HR_UTILITY

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

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, 10);
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: hr_utility.set_location(l_proc, 20);

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: hr_utility.set_location(l_proc, 20);
152: --

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

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: hr_utility.set_location(l_proc, 20);
152: --
153: -- Check that the legislation of the specified business group is 'KW'.
154: --
155: IF l_legislation_code <> 'KW' THEN

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

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

Line 157: hr_utility.set_message_token('LEG_CODE','KW');

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

Line 158: hr_utility.raise_error;

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

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

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

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

277: ,p_name_combination_warning => p_name_combination_warning
278: ,p_assign_payroll_warning => p_assign_payroll_warning
279: ,p_orig_hire_warning => p_orig_hire_warning);
280: --
281: hr_utility.set_location(' Leaving:'||l_proc, 40);
282: --
283: end create_kw_employee;
284: end hr_kw_employee_api;